2023-04-06 09:12:49 +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,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"strictBindCallApply": false,
|
|
|
|
"forceConsistentCasingInFileNames": false,
|
2023-08-16 10:28:20 +00:00
|
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
"paths": {
|
|
|
|
"@libs/*": ["src/libs/*"],
|
|
|
|
"@modules/*": ["src/modules/*"],
|
|
|
|
"@src/*": ["src/*"]
|
|
|
|
}
|
2023-04-06 09:12:49 +00:00
|
|
|
}
|
|
|
|
}
|