mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-27 22:36:06 +00:00
20 lines
571 B
JSON
20 lines
571 B
JSON
{
|
|
"extends": "@lifeforge/configs/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"verbatimModuleSyntax": false,
|
|
"outDir": "./dist",
|
|
"allowUnusedLabels": false,
|
|
"emitDecoratorMetadata": true,
|
|
"useDefineForClassFields": false,
|
|
"noUnusedLocals": true,
|
|
"rootDir": "../../",
|
|
"paths": {
|
|
"@constants": ["./src/core/constants"],
|
|
"@functions/*": ["./src/core/functions/*"],
|
|
"@schema": ["./src/core/schema"],
|
|
"@lib/*": ["./src/lib/*", "../../modules/*"]
|
|
}
|
|
},
|
|
"include": ["./src/**/*", "../../modules/**/server/**/*"]
|
|
}
|