Visual Studio代码IntelliSense无法与NodeJS一起使用

时间:2018-07-09 07:20:59

标签: javascript node.js express visual-studio-code config

我已经使用vs代码开发了一段时间的NodeJS项目,但是IntelliSense不适用于我正在编写的类和文件,我已经在here内尝试了该解决方案,但是对我来说不起作用,所以任何人都可以帮助我解决此问题。

VS代码版本:1.25.0

NodeJS版本:8.9.4

有关IntelliSense问题的示例:

This is a simple class 这是一个简单的课程

As you can see when I am importing it from another file no IntelliSense is working 如您所见,当我从另一个文件导入它时,IntelliSense无法正常工作 But the node_module files IntelliSense is working 但是IntelliSense的node_module文件正在工作!

1 个答案:

答案 0 :(得分:0)

我试图用另一种语法解决该问题,以导出该类:

class Util {
    constructor() { }

    getNumber(x, y) {
        return x * y;
    }
}

exports.default = Util;

然后,我可以像这样导入类

const util = require('./../util/util').default;

自动补全功能有效

enter image description here