我在 tsconfig.json 中的 outDir 有问题。
我有以下 tsconfig 文件:
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outDir": "dist",
"outFile": "App.js"
},
"exclude": [
"node_modules",
"local_typings"
]
}
这些文件被编译为 App.js,但不是在我指定的目录 (dist) 中,而是在 tsconfig 文件所在的目录中。有人找到解决这个问题的方法吗?