mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 16:14:12 +00:00
- Replace FlatCompat bridge with native flat config imports from eslint-config-next (16.x exports flat configs directly) - Remove unused @eslint/eslintrc devDependency - Increase tsc heap to 4096MB for typecheck (55+ collections exceed 2GB) - Exclude migrations, test artifacts from tsconfig type-checking Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
50 lines
904 B
JSON
50 lines
904 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ES2022"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@payload-config": [
|
|
"./src/payload.config.ts"
|
|
]
|
|
},
|
|
"target": "ES2022"
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"src/migrations",
|
|
"src/migrations_backup",
|
|
"test-results",
|
|
"playwright-report",
|
|
"coverage"
|
|
]
|
|
}
|