2017-06-10 06:29:16 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-06-24 19:40:37 +08:00
|
|
|
"module": "es2015",
|
2020-03-02 00:02:49 +08:00
|
|
|
"target": "es2016",
|
2019-06-24 19:40:37 +08:00
|
|
|
"moduleResolution": "node",
|
2017-06-10 06:29:16 +08:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": false,
|
2018-05-20 22:12:05 +08:00
|
|
|
"emitDeclarationOnly": false,
|
2017-06-10 06:29:16 +08:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"skipLibCheck": true,
|
2018-08-26 19:15:00 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2019-07-03 18:24:26 +08:00
|
|
|
"importHelpers": true,
|
2019-09-19 02:56:59 +08:00
|
|
|
"strictNullChecks": true,
|
2017-06-10 06:29:16 +08:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
2017-10-21 03:44:34 +08:00
|
|
|
"es5",
|
|
|
|
"es6",
|
|
|
|
"es7",
|
2018-10-09 14:34:23 +08:00
|
|
|
"es2015",
|
|
|
|
"es2017"
|
2021-02-01 01:20:58 +08:00
|
|
|
],
|
|
|
|
"paths": {
|
2021-02-01 02:33:33 +08:00
|
|
|
"terminus-*": ["../../terminus-*/src"]
|
2021-02-01 01:20:58 +08:00
|
|
|
}
|
2017-06-10 06:29:16 +08:00
|
|
|
}
|
|
|
|
}
|