2021-11-02 19:11:20 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es2015",
|
|
|
|
"noImplicitAny": false,
|
2021-12-14 13:20:38 +01:00
|
|
|
"sourceMap": true,
|
2021-11-02 19:11:20 +01:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"lib": [
|
2021-11-09 13:49:08 +01:00
|
|
|
"dom",
|
2021-11-02 19:11:20 +01:00
|
|
|
"es2015",
|
|
|
|
"es2016",
|
|
|
|
"es2017",
|
|
|
|
"es2018",
|
|
|
|
"es2019"
|
|
|
|
],
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@server/*": [ "server/*" ],
|
2021-11-09 13:49:08 +01:00
|
|
|
"@shared/*": [ "shared/*" ],
|
2021-12-24 13:16:55 +01:00
|
|
|
"@client/*": [ "client/src/*" ]
|
2021-11-02 19:11:20 +01:00
|
|
|
},
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"strict": false,
|
2022-06-03 16:17:28 +02:00
|
|
|
"strictBindCallApply": true,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedLocals": true,
|
2021-11-02 19:11:20 +01:00
|
|
|
"skipLibCheck": true,
|
2021-12-14 13:20:38 +01:00
|
|
|
"composite": true,
|
|
|
|
"declarationMap": true
|
2021-11-02 19:11:20 +01:00
|
|
|
}
|
|
|
|
}
|