
Some checks failed
CI Pipeline / Setup Dependencies (push) Has been cancelled
CI Pipeline / Check Dependency Updates (push) Has been cancelled
CI Pipeline / Lint & Format Check (push) Has been cancelled
CI Pipeline / Unit Tests (push) Has been cancelled
CI Pipeline / Integration Tests (push) Has been cancelled
CI Pipeline / Build Application (push) Has been cancelled
CI Pipeline / Docker Build & Test (push) Has been cancelled
CI Pipeline / Security Scan (push) Has been cancelled
CI Pipeline / Deployment Readiness (push) Has been cancelled
47 lines
No EOL
1.2 KiB
JSON
47 lines
No EOL
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": false,
|
|
"noImplicitAny": false,
|
|
"strictBindCallApply": false,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"strict": false,
|
|
"noImplicitReturns": false,
|
|
"noImplicitThis": false,
|
|
"noImplicitOverride": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"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"
|
|
]
|
|
} |