我有以下tsconfig.json
,我想将转译的输出放在build/
文件夹中
{
"compileOptions": {
"module": "amd",
"noImplicitAny": "true",
"removeComments": "true",
"target": "es5",
"sourceMaps": true,
"outDir": "build/"
},
}
但是它不起作用。我让它工作的唯一方法是将outDir
作为标志传递给tsc
。
发现了一个问题,它问了我遇到的相同问题。但是我使用的是打字稿版本 1.8.10。我已经在那里尝试了建议的解决方案,但我仍然无法让它工作。
有人知道我如何tsc
读取tsconfig.json
文件中设置outDir
属性?
选项名称compilerOptions
而不是compileOptions
。
{
"compilerOptions": {
"module": "amd",
"noImplicitAny": "true",
"removeComments": "true",
"target": "es5",
"sourceMaps": true,
"outDir": "build/"
},
}