mirror of
https://github.com/complexcaresolutions/frontend.porwoll.de.git
synced 2026-03-17 17:33:41 +00:00
- Next.js 16 + Tailwind CSS 4 project setup - Add @c2s/payload-contracts for shared API client (tenant: porwoll, ID: 1) - Create src/lib/cms.ts and src/lib/api.ts with CMS integration - Create block renderer with 15 placeholder blocks - Create dynamic [slug] page routing with CMS pages - Layout with CMS site settings integration - transpilePackages configured for TypeScript source imports Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
34 lines
670 B
JSON
34 lines
670 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"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/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts",
|
|
"**/*.mts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|