mirror of
https://github.com/complexcaresolutions/frontend.zweitmeinu.ng.git
synced 2026-03-17 19:43:47 +00:00
Full medical second opinion website with: - 10 routes: home, fachbereiche (overview + 6 detail), faq, so-funktionierts, motivation, ueber-uns, kontakt, impressum, datenschutz - Premium medical design: navy/blue/gold color system, Roboto Condensed - Layout: TopBar, sticky Header with mega-menu, EmergencyBanner, Footer - Service detail pages with benefits, checklist, stats, CTA - FAQ page with search, category filter, accordion, Schema.org structured data - Contact form with validation and Payload CMS form submission - @c2s/payload-contracts integration for type-safe API access - Tailwind CSS v4 design system with custom animations - PM2 ecosystem config on port 3002 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"]
|
|
}
|