logger/tsconfig.json

27 lines
666 B
JSON
Raw Normal View History

2022-12-23 15:36:23 +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-31 10:08:39 +00:00
"strictNullChecks": true,
"noImplicitAny": true,
2022-12-23 15:36:23 +00:00
"strictBindCallApply": false,
2023-10-31 10:08:39 +00:00
"forceConsistentCasingInFileNames": true,
2023-06-29 09:49:07 +00:00
"noFallthroughCasesInSwitch": false,
"paths": {
2023-10-31 10:08:39 +00:00
"@libs/*": ["src/libs/*"],
2023-06-29 09:49:07 +00:00
"@modules/*": ["src/modules/*"],
2024-01-17 07:19:47 +00:00
"@src/*": ["src/*"],
},
},
2022-12-23 15:36:23 +00:00
}