VSCode不自动完成Node.JS模块

时间:2018-01-08 12:38:47

标签: javascript node.js visual-studio-code editor

它是如何使用默认的js方法,IntelliSense似乎理解并自动完成这个 enter image description here




当我尝试导入一些节点默认模块(path,fs,http)时 这个突出显示没有显示这些对象的方法,我该如何解决这个问题呢? enter image description here

1 个答案:

答案 0 :(得分:0)

如果由于某种原因拥有tsconfig.json,请将enableAutoDiscovery添加为true,因为如果该文件存在,则默认为false。

// tsconfig.json
{
    ...
    "typingOptions": {
      "enableAutoDiscovery": true
    }
}