在使用 npm 和 ES6 模块时,我设法获得了完美的代码完成——但是当我只有一个 HTML 并且通过 script 标签包含 JS 时,我如何获得代码完成?
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example</title>
</head>
<body>
<script src="https://d3js.org/d3.v4.js"></script>
<script>
d3.select("body") // Unresolved variable or type d3
</script>
</body>
我尝试将 D3 添加为库(项目设置 > 库) - 无济于事。