mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
38 lines
976 B
JSON
38 lines
976 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2021",
|
|
"module": "commonjs",
|
|
"lib": ["dom", "es2021"],
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@controllers/*": ["controllers/*"],
|
|
"@services/*": ["services/*"],
|
|
"@validations/*": ["validations/*"],
|
|
"@middleware/*": ["middleware/*"],
|
|
"@helpers/*": ["helpers/*"],
|
|
"@routes/*": ["routes/*"],
|
|
"@queues/*": ["queues/*"],
|
|
"@lib/*": ["lib/*"],
|
|
"@utils/*": ["utils/*"],
|
|
"@/*": ["*"]
|
|
},
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"strict": true,
|
|
"pretty": true,
|
|
"sourceMap": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"outDir": "./dist",
|
|
"typeRoots": ["./types"]
|
|
},
|
|
"exclude": ["dist"]
|
|
}
|