Files
services-site/tsconfig.json
Agent Zero 88eb8c793a Initial commit: Modern services website with React + Vite
Features:
- Responsive hero section with animated gradients
- Services grid with 6 service cards (Web Dev, UI/UX, Marketing, Mobile, Cloud, Security)
- About section with company highlights and stats
- Contact form and contact information
- Modern dark theme with gradient accents
- Fully responsive design
- Optimized for Coolify static deployment

Tech Stack:
- React 18
- TypeScript
- Vite
- Lucide React icons
- CSS custom properties and gradients
2026-02-15 14:10:55 +00:00

22 lines
562 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}