Production-ready Next.js boilerplate with: - Runtime env validation (fail-fast on missing vars) - Feature-gated config (S3, Stripe, email, OAuth) - Docker + Coolify deployment pipeline - PostgreSQL + pgvector, MinIO S3, Better Auth - TypeScript strict mode (no ignoreBuildErrors) - i18n (en/es), AI modules, billing, monitoring Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
707 B
JSON
28 lines
707 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
|
|
"incremental": true,
|
|
"disableSourceOfProjectReferenceRedirect": true,
|
|
"tsBuildInfoFile": "${configDir}/.cache/tsbuildinfo.json",
|
|
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"checkJs": true,
|
|
|
|
"module": "Preserve",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
},
|
|
"files": ["./reset.d.ts"],
|
|
"exclude": ["node_modules", "build", "dist", ".next", ".expo", ".wxt"]
|
|
}
|