Files
lifeforge/server/tsconfig.json
Melvin Chia 73c4319a5b 25w31
Former-commit-id: d1af55f1bac76e25217b0880e0e03771a7fec45d [formerly c97c03f042ca7c43bcfc0dffd4178b8a4076db5d] [formerly 12d1af2299120355d6a69042cfbc5f644a33faa7 [formerly 76892f720f57a62ad0fe42405a1e1c5a52b8829d]]
Former-commit-id: 6ae9ce7de66447073d4ccb1ca4428a923ceb9071 [formerly 6131d9a87f7d23285ee250bc7ff5cf35c942b105]
Former-commit-id: 62da56f588030c39657a5210ee9c58fabd42e1fe
2025-08-01 16:38:51 +08:00

42 lines
956 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"outDir": "./dist",
"module": "ESNext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"moduleResolution": "bundler",
"strictFunctionTypes": true,
"strictNullChecks": true,
"allowUnusedLabels": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"useDefineForClassFields": false,
"noUnusedLocals": true,
"declaration": true,
"composite": true,
"emitDeclarationOnly": true,
"paths": {
"@functions/*": [
"./src/core/functions/*"
],
"@typescript/*": [
"./src/core/typescript/*"
],
"@middlewares/*": [
"./src/core/middlewares/*"
],
"@schema": [
"./src/core/schema"
],
"@apps/*": [
"./src/apps/*"
],
"@lib/*": [
"./src/core/lib/*"
]
}
}
}