47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
![]() |
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"declaration": true,
|
||
|
"removeComments": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"target": "ES2021",
|
||
|
"sourceMap": true,
|
||
|
"outDir": "./dist",
|
||
|
"baseUrl": "./",
|
||
|
"incremental": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strictNullChecks": true,
|
||
|
"noImplicitAny": true,
|
||
|
"strictBindCallApply": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"strict": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitThis": true,
|
||
|
"noImplicitOverride": true,
|
||
|
"exactOptionalPropertyTypes": true,
|
||
|
"noUncheckedIndexedAccess": true,
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"],
|
||
|
"@/database/*": ["src/database/*"],
|
||
|
"@/users/*": ["src/users/*"],
|
||
|
"@/batches/*": ["src/batches/*"],
|
||
|
"@/images/*": ["src/images/*"],
|
||
|
"@/payments/*": ["src/payments/*"],
|
||
|
"@/auth/*": ["src/auth/*"],
|
||
|
"@/common/*": ["src/common/*"]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*",
|
||
|
"prisma/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"dist",
|
||
|
"test",
|
||
|
"**/*.spec.ts"
|
||
|
]
|
||
|
}
|