包含node_modules后,我收到错误 tsc.exe已退出,代码为2 我该如何解决这个错误?
我的tscongfig.json是: -
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
}
}
答案 0 :(得分:0)
我通过更改 Microsoft.TypeScript.targets 文件解决了上述问题,我将更改更改为: -
<TypeScriptCompileBlocked Condition="'$(TypeScriptCompileBlocked)' == ''">true</TypeScriptCompileBlocked>
默认情况下是真的。 改变之后,它正在建设中。