2020-05-08 11:05:34 +08:00
|
|
|
|
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2018",
|
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"lib": [
|
|
|
|
"ES2018",
|
|
|
|
"ES2019",
|
|
|
|
"ES2020",
|
|
|
|
"ESNext"
|
|
|
|
],
|
2020-05-08 11:22:09 +08:00
|
|
|
"outDir": "./dist/tsc",
|
2020-05-08 11:05:34 +08:00
|
|
|
"preserveConstEnums": true,
|
|
|
|
"incremental": false,
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"importHelpers": false,
|
|
|
|
"strict": true,
|
|
|
|
"pretty": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true
|
|
|
|
}
|
|
|
|
}
|