VSCode intellisense不能与ES6导入一起使用?

时间:2018-05-30 10:39:42

标签: react-native visual-studio-code intellisense

我几天都没有遇到这种麻烦。

spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:/C:/custResources/ 不起作用,import abc from './abc'或其中的任何功能都不会被建议。 甚至不会建议文件abc.xyz()

我必须使用abc.js,一切正常。 文件建议和方法都可用

我已尝试添加abc = required('./abc.js')并强制使用jsconfig.json,但也无法使用。

已安装"module":"es6"。 最终无法让它发挥作用。

修改 我发现react native tools不再有用了。如果我想访问所有方法,我必须写module.exports = User,因为何时以及如何获得旧学校出口作品?

1 个答案:

答案 0 :(得分:1)

将jsconfig.json更改为

{
    "compilerOptions": {
        "target": "es6"
    },
    "exclude": [
        "node_modules"
    ]
}

然后您可能需要重新启动VScode

选项模块用于打字稿,更多关于此here