Files
livedash-node/tsconfig.json
Kaj Kowalski 7932fe7386 fix: lazy-load Prisma client to fix build-time URL parsing
- Make Prisma client initialization lazy via Proxy
- Defer database-pool import until runtime
- Add guard for empty DATABASE_URL
- Build now succeeds with Next.js 16.1.4
2026-01-20 07:34:30 +01:00

47 lines
838 B
JSON

{
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": [
"dom",
"dom.iterable",
"ES2024"
],
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"noImplicitAny": false,
"paths": {
"@/*": [
"./*"
]
},
"plugins": [
{
"name": "next"
}
],
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"target": "ES2024"
},
"exclude": [
"node_modules",
"tests"
],
"include": [
"next-env.d.ts",
"types/**/*.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
]
}