我的应用程序已经构建并完美运行了一个月,突然出现以下错误
Error: Failed to transpile TypeScript
它与以下tsconfig.json文件一起运行
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"dom",
"es2015"
],
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"target": "es5",
},
现在,如果我添加
type:[]
在CompilerOption中,然后就可以像以前一样正确构建和运行。就我而言,这不是一个好的解决方案,我必须说这是构建临时解决方案,但会遇到错误。
引导我完成正确的解决方案。