Visual Studio代码intellisense设置为javascript较低版本

时间:2018-02-08 10:07:10

标签: javascript angularjs visual-studio-code visual-studio-community

我正在使用visual studio代码1.20.0

我不确定什么时候,但经过一些更新后,代码intellisense会在每个js文件中提供ES6输出。

我正在开发angularjs项目&我根本就不想使用es6。

目前我正在使用intellisense获取以下代码。

for (let index = 0; index < array.length; index++) {
    const element = array[index];

}

array.forEach(element => {

});

我希望它像之前一样。如下所示

for (var index = 0; index < array.length; index++) {      
}

array.forEach(function(element) {

});

如何将javascript设置为较低版本。我在工作区中未添加任何插件

任何人都可以告诉我如何实现这一目标。

1 个答案:

答案 0 :(得分:0)

检查此链接Bro ...
VS Code中的智能感知建议可以使用editor.quickSuggestions,editor.acceptSuggestionOnEnter和editor.suggestOnTriggerCharacters设置在全局或每个工作空间配置,每种文件类型(语言)为1.9,

How to disable IntelliSense in VS Code for Markdown?