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