使用Visual Studio Code在HTML文件中启用ES6

时间:2015-09-17 05:51:21

标签: html visual-studio-code

VS Code 0.8.0警告我必须编写jsconfig.json文件来设置ES6选项,但它似乎只适用于JS文件,而不适用于HTML文件。它不会抑制HTML中的错误。

如何在HTML文件中抑制此错误?

jsconfig.json文件:

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

html文件:

<html>
<head>
  <meta charset="utf-8">
  <title>Mocha Tests</title>
  <script>
    document.addEventListener("DOMContentLoaded", () => { // Error: This can only be used with ES6. Make sure to have a jsconfig.json-file which sets the target to ES6.
    })
  </script>
</head>
<body>
  <div id="mocha"></div>
</body>
</html>

1 个答案:

答案 0 :(得分:2)

我不知道你是否可以立即抑制错误,但这是一个确认的错误。请密切关注此问题的错误报告,并在修复后进行更新:https://github.com/Microsoft/vscode/issues/559