2026-04-17 13:34:57 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "nodenext",
|
|
|
|
|
"moduleResolution": "nodenext",
|
|
|
|
|
"resolvePackageJsonExports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"target": "ES2023",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": "./",
|
2026-04-18 00:01:57 +01:00
|
|
|
"paths": {
|
|
|
|
|
"@prisma/client": ["./node_modules/.prisma/client"]
|
|
|
|
|
},
|
2026-04-17 13:34:57 +01:00
|
|
|
"incremental": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"strictBindCallApply": false,
|
|
|
|
|
"noFallthroughCasesInSwitch": false
|
|
|
|
|
}
|
|
|
|
|
}
|