知道如何调试吗?这是我的tsconfig.json
:
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"dom",
"es2015"
],
"module": "es2015",
"moduleResolution": "node",
"target": "es5"
},
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}
答案 0 :(得分:1)
我注释掉了 lib :
// "lib": [
// "dom",
// "es2015"
// ]
这是针对Ionic 2 Best的做法,但这就是它的工作原理。我很想知道为什么。我有一个线索,它与我以前的打字装置的一些监督文物相冲突。