mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-28 06:46:24 +00:00
42 lines
934 B
JSON
42 lines
934 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,
|
|
"rootDir": "../",
|
|
"paths": {
|
|
"@constants": [
|
|
"./src/core/constants"
|
|
],
|
|
"@functions/*": [
|
|
"./src/core/functions/*"
|
|
],
|
|
"@schema": [
|
|
"./src/core/schema"
|
|
],
|
|
"@lib/*": [
|
|
"./src/lib/*",
|
|
"../apps/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"../apps/**/server/**/*"
|
|
]
|
|
} |