Files
lifeforge/server/tsconfig.json
melvinchia3636 7eb67115aa refactor(server): rename app folder to lib
Former-commit-id: cdb69ddcd49f9dbf895b7139d9495cee573916f2 [formerly 4efd55ad263454f3838cc9aa132dd540c0002914] [formerly aa792d378bf11af7a4cdf4008cb9bd27db70e71d [formerly 21d221497fc0be1408b12b5b3ccd8763b247cca3]]
Former-commit-id: 17c34e39ffd445a65994a81bad2f711b14aa81d3 [formerly 731471749fc5ccd20adf3b7530feeeea57b3f0c7]
Former-commit-id: b09d5a8d371cc5e360eb2542843f1cf40b4201f6
2025-09-09 10:39:03 +08:00

36 lines
833 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/*"
],
"@middlewares/*": [
"./src/core/middlewares/*"
],
"@schema": [
"./src/core/schema"
],
"@lib/*": [
"./src/lib/*"
],
}
}
}