gpt4 book ai didi

typescript :tsconfig.json outDir 属性不起作用

转载 作者:搜寻专家 更新时间:2023-10-30 21:10:56 24 4
gpt4 key购买 nike

我有以下 tsconfig.json,我想将转译后的输出放在 build/ 文件夹中

{
"compileOptions": {
"module": "amd",
"noImplicitAny": "true",
"removeComments": "true",
"target": "es5",
"sourceMaps": true,
"outDir": "build/"
},
}

但是它不起作用。我让它工作的唯一方法是将 outDir 作为标志传递给 tsc

我找到一个 question问了我有同样的问题。但是我使用的是 1.8.10 版的 typescript 。我已经在那里尝试了建议的解决方案,但仍然无法正常工作。

有人知道我如何让 tsc 读取在 tsconfig.json 文件中设置的 outDir 属性吗?

最佳答案

选项名称是 compilerOptions 而不是 compileOptions

{
"compilerOptions": {
"module": "amd",
"noImplicitAny": "true",
"removeComments": "true",
"target": "es5",
"sourceMaps": true,
"outDir": "build/"
},
}

关于 typescript :tsconfig.json outDir 属性不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37447282/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com