2020-04-12 18:27:01 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2021-12-07 22:16:40 -05:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"target": "es2017",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": "./",
|
2026-02-19 16:16:23 -05:00
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/client/src/*"]
|
|
|
|
|
},
|
2021-12-07 22:16:40 -05:00
|
|
|
"incremental": true,
|
2020-04-12 18:27:01 +02:00
|
|
|
"skipLibCheck": true,
|
2021-12-07 22:16:40 -05:00
|
|
|
"esModuleInterop": true
|
2020-04-12 18:27:01 +02:00
|
|
|
},
|
2021-12-07 22:16:40 -05:00
|
|
|
"include": ["src/server"]
|
2020-04-12 18:27:01 +02:00
|
|
|
}
|