Files
Klc_backend/tsconfig.json

29 lines
708 B
JSON
Raw Normal View History

2025-10-15 16:09:28 +05:30
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2020",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"paths": {
"@/*": ["src/*"],
"@/common/*": ["src/common/*"],
"@/modules/*": ["src/modules/*"],
"@/config/*": ["src/config/*"]
}
}
}