如何使用不同的tsconfig.json

时间:2016-09-26 07:12:09

标签: typescript tsconfig

我有一个非常规则的项目结构......我的主要tsconfig.json位于我项目的根目录中,我对此没有任何问题。但是当我尝试使用另一个(/scripts/tsconfig.json)进行制作时,我遇到了问题。 tsc -p scripts/tsconfig.json没有做任何事情,也没有错误消息。我正在使用TypeScript 1.8.10。这是我的脚本/ tsconfig.json:

{
  "compilerOptions": {
    "outDir": "../dist/js",
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false
  },
  "include": [
        "../src/*.ts"
  ]
}

我还缺少什么?任何帮助非常感谢。

0 个答案:

没有答案