Files
lifeforge/server/tsconfig.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/**/*"
]
}