在 VS Code 中的何处指定 --module 标志?

Where to specify --module flag in VS Code?

我正在为某些 TypeScript 使用全新的 Visual Studio 代码编辑器。并且,尝试像这样从 d.ts 导入一些 类:

import Polygon = require('esri/geometry/Polygon');

但是,我收到一条红色波浪线,上面写着:

Cannot compile external dependencies unless the --module flag is provided

我的问题是,我在哪里提供那个标志?我相信这是 TypeScript 编译器的标志。在 Visual Studio 中,它是项目上的一个复选框。但是在代码中,我找不到任何编辑器设置。

But in Code, I can't find any editor setting for that.

您需要使用 tsconfig.json : https://github.com/TypeStrong/atom-typescript/blob/master/docs/tsconfig.md

我只想指出一个事实,即重新启动编辑器是重要的一步。我创建了一个 tsconfig.json 并用头撞了一会儿才注意到 antfx 的评论,果然,重新启动 VS Code 解决了问题。