使用--module选项在Sublime文本中使用Typescript构建系统配置

时间:2014-10-31 16:14:21

标签: node.js sublimetext2 typescript

我尝试使用these build system configs,但我想添加' - 模块commonjs'编译器的选项。

我试过这个,但它没有用。

{
    "selector": "source.ts",
    "cmd": ["tsc.cmd","--module commonjs","$file"],
    "file_regex": "^(.*\\.ts?)\\s\\(([0-9]+)\\,([0-9]+)\\)\\:\\s(...*?)$"
}

错误TS5023:未知的编译器选项' module commonjs'。我收到了这个错误。它就像没有认识到' - '字符

提前致谢。

1 个答案:

答案 0 :(得分:2)

你离得很近!如果您将--module commonjs更改为单独的项目,则可以正常使用,请参阅下文。

"cmd": ["tsc.cmd","--module", "commonjs","$file"],