我有一个非常常规的项目结构......我的主要 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"
]
}
我还缺少什么?非常感谢任何帮助。