Files
ZYZ/gm-server/tsconfig.json
2026-03-13 01:38:40 +00:00

39 lines
954 B
JSON

{
"compileOnSave": true,
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"strict": true,
"noImplicitAny": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"charset": "utf8",
"allowJs": false,
"pretty": true,
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strictNullChecks": false,
"inlineSourceMap": true,
"importHelpers": true,
"baseUrl": ".",
"paths": {
"@domain/*": ["../shared/domain/*"],
"@db/*": ["../shared/db/*"],
"@consts": ["../shared/consts"],
"@pubUtils/*": ["../shared/pubUtils/*"]
},
},
"exclude": [
"app/public",
"app/views",
"node_modules*"
]
}