mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 16:14:12 +00:00
- Upgrade next and eslint-config-next to 16.2.0-canary.41 - Fix ReportGeneratorService: replace non-existent sendEmail import with sendTenantEmail (latent bug exposed by Next.js 16 strict module checking) - Fix SCSS: replace :global(.dark) with .dark in 4 admin component stylesheets (Next.js 16 Lightning CSS rejects :global pseudo-class in non-CSS-Module files) - Update tsconfig.json: jsx "preserve" → "react-jsx" (Next.js 16 req) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
45 lines
792 B
JSON
45 lines
792 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"
|
|
]
|
|
}
|