使用 Visual Studio 代码在 HTML 文件中启用 ES6

Enable ES6 in HTML file with 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>

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