2023-05-03 11:43:21 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"target": "es2017",
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"baseUrl": "./",
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
2023-10-16 15:11:20 +00:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"noImplicitAny": true,
|
2023-05-03 11:43:21 +00:00
|
|
|
"strictBindCallApply": false,
|
2023-10-16 15:11:20 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2023-06-20 14:50:55 +00:00
|
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
"paths": {
|
|
|
|
"@libs/*": ["src/libs/*"],
|
|
|
|
"@modules/*": ["src/modules/*"],
|
2023-06-29 08:26:48 +00:00
|
|
|
"@src/*": ["src/*"]
|
2023-06-20 14:50:55 +00:00
|
|
|
}
|
2023-05-03 11:43:21 +00:00
|
|
|
}
|
|
|
|
}
|