在哪里可以找到VSCode支持的JS模块列表?

时间:2016-03-03 19:30:08

标签: javascript module visual-studio-code

很明显,我可以通过创建jsconfig.json来配置VSCode识别模块,但我无法在任何地方找到支持的模块类型列表。

有人可以建议我在哪里可以找到支持的VSCode JS模块列表吗?

{
    "compilerOptions": {
        "target": "ES6",
        "module": "?"
    }
}

1 个答案:

答案 0 :(得分:1)

I'm surprised that you aren't getting intellisense for jsconfig.json.

Try this.

Type the quote character ", then type ctrl+space. You should see something like this.

enter image description here

相关问题