38 lines
1.0 KiB
JSON
38 lines
1.0 KiB
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "NodeNext",
|
||
|
|
"moduleResolution": "NodeNext",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./",
|
||
|
|
"strict": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"exactOptionalPropertyTypes": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"allowJs": false,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"],
|
||
|
|
"@/config/*": ["src/config/*"],
|
||
|
|
"@/common/*": ["src/common/*"],
|
||
|
|
"@/infrastructure/*": ["src/infrastructure/*"],
|
||
|
|
"@/modules/*": ["src/modules/*"],
|
||
|
|
"@/events/*": ["src/events/*"],
|
||
|
|
"@/jobs/*": ["src/jobs/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src/**/*", "tests/**/*", "scripts/**/*", "prisma/**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "dist", "coverage"]
|
||
|
|
}
|