站长资讯网
最全最丰富的资讯网站

vscode无法对js进行智能提示

vscode无法对js进行智能提示

1、安装typings。

npm install typings --global

2、项目下初始化typings。

typings init

(推荐学习:java视频教程)

3、项目下增加jsconfig.json。内容如下:

{  // See https://go.microsoft.com/fwlink/?LinkId=759670  // for the documentation about the jsconfig.json format  "compilerOptions": {  "target": "es5",  "module": "commonjs",  "allowSyntheticDefaultImports": true  },  "exclude": [  "node_modules",  "bower_components",  "jspm_packages",  "tmp",  "temp"  ] }

4、安装想要的提示。

typings install dt~node --global --save typings install express --ambient --save

相关教程推荐:vscode教程

赞(0)
分享到: 更多 (0)
网站地图   沪ICP备18035694号-2    沪公网安备31011702889846号