使用Atom编译所有文件Typescript

时间:2016-02-01 14:36:15

标签: javascript compilation typescript atom-editor

我使用TypeScript使用node.js创建后端应用程序。我使用Atom-Typescript plugin作为受欢迎的Atom作为IDE使用。到目前为止,我很喜欢它。

为了编译它,我使用了一些我在互联网上找到的样板文件和文件:

tsconfig.json:

{
  "compilerOptions": {
      "target": "es6",
      "noImplicitAny": false,
      "outDir": "../build",
      "rootDir": ".",
      "module": "commonjs",
      "sourceMap": true
  },
  "exclude": [
      "node_modules"
  ],
  "buildOnSave": true
}

有时(实际上经常)我必须通过tsc shell命令重新编译所有内容以通过F6键绑定。每当我从远程git中提取工作人员编辑时,以及当我添加新文件或有时因为未知原因需要重新编译时,就会发生这种情况。

所有这些问题让我觉得我错过了一些关于Typescript编译器的重要配置。

任何提示?

0 个答案:

没有答案