vscode无法对js进行智能提示
时间:2020-03-14 14:08
1、安装typings。 2、项目下初始化typings。 (推荐学习:java视频教程) 3、项目下增加jsconfig.json。内容如下: 4、安装想要的提示。 相关教程推荐:vscode教程 以上就是vscode无法对js进行智能提示的详细内容,更多请关注gxlsystem.com其它相关文章!npm install typings --global
typings init
{
// 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"
]
}
typings install dt~node --global --save
typings install express --ambient --save