mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-07-01 08:16:35 +00:00
Former-commit-id: cdb69ddcd49f9dbf895b7139d9495cee573916f2 [formerly 4efd55ad263454f3838cc9aa132dd540c0002914] [formerly aa792d378bf11af7a4cdf4008cb9bd27db70e71d [formerly 21d221497fc0be1408b12b5b3ccd8763b247cca3]] Former-commit-id: 17c34e39ffd445a65994a81bad2f711b14aa81d3 [formerly 731471749fc5ccd20adf3b7530feeeea57b3f0c7] Former-commit-id: b09d5a8d371cc5e360eb2542843f1cf40b4201f6
36 lines
833 B
JSON
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/*"
|
|
],
|
|
}
|
|
}
|
|
} |