Files
storfwirt-reutte-2026-02-23-v1/website/tsconfig.json
1elle1 c36bc49cdd feat: add restaurant and about us pages with animated sections
- Implemented RestaurantPage with features, atmosphere, gallery, and contact CTA.
- Created UeberUnsPage detailing the history, values, and team of Storfwirt.
- Added AnimatedSection component for smooth animations on scroll.
- Introduced ContactCTA component for event inquiries.
- Developed ContactForm component for user inquiries with validation.
- Created Footer and Header components for site navigation and branding.
- Added PlaceholderImage and Section components for consistent layout.
- Configured TypeScript settings in tsconfig.json for improved development experience.
2026-02-23 17:29:53 +01:00

35 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"]
}