Visual Studio代码在悬停时不显示最新版本的npm包

问题描述 投票:2回答:1

在package.json中,我曾经检查过最新版本的软件包作为“工具提示”,只需在每个软件包版本上传递鼠标,但它不再显示。 我的VSC版本是1.19.2。 我浏览代理。 我已经检查过我的工作区设置是空的,我的用户设置是这样的:

{
    "vsicons.projectDetection.autoReload": true,
    "window.zoomLevel": 0,
    "vsicons.dontShowNewVersionMessage": true,
    "workbench.iconTheme": "vscode-icons",
    "workbench.startupEditor": "newUntitledFile",
    "explorer.confirmDragAndDrop": false,

    "http.proxy": "____myproxyIP____",
    "http.proxyStrictSSL": false
}

谢谢!

node.js angular npm visual-studio-code
1个回答
-1
投票

如果你有正确的语言模式JSON而不是JSONc(带注释的JSON),请检查。

看看右下角。

正确:

enter image description here

不正确:enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.