智能感不适用于VS Code

时间:2016-06-13 12:40:15

标签: typescript visual-studio-code

我无法在编辑器中获得智能感。我已按照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。

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试将tsconfig.json文件用于打字稿项目。这将告诉IDE项目根目录及其子目录都是相同的typescript项目!

Docs