我无法在编辑器中获得智能感。我已按照https://code.visualstudio.com/Docs/runtimes/nodejs
下面的链接进行操作我有快递,节点和其他库的类型。
适用于节点(例如进程)中全局级别可用的内容,但我需要的任何其他内容,如http或express,智能不显示。
jsconfig.json
{
// See https://go.microsoft.com/fwlink/?LinkId=759670
// for the documentation about the jsconfig.json format
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"allowSyntheticDefaultImports": true
},
"exclude": [
"node_modules",
"bower_components",
"jspm_packages",
"tmp",
"temp"
]
}
提前致谢。
------------- ----------------更新
tsconfig.json
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true
},
"exclude": [
"node_modules"
]
}
---------更新---------------- 使用你建议的模板,它丢失了我安装的打字文件,即使这样我也没有得到intellisense。