我得到了TypeError:
无法读取未定义
的属性'compilerOptions'
这是我的compilerOptions代码:
{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"noEmitHelpers": true,
},
"compileOnSave": false,
"buildOnSave": false,
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true
}
}
有人能告诉我为什么会这样吗?
答案 0 :(得分:2)
首先,您的JSON格式错误。第8行有一个,
。
"noEmitHelpers": true, should be "noEmitHelpers": true