Files
noveria-landing/tsconfig.app.json
T
developer fb7d7c5b2d feat: Migrate landing page to Vue 3 + TypeScript
- Replace static HTML with Vue 3 SPA (Vite + TypeScript)
- Add GalaxyCanvas component (interactive particle animation)
- Component-based sections (HeroSection, SectionBlock, FooterView)
- Add nginx.conf with SPA routing + security headers
- Update compose.yaml to mount nginx config
- Build output in html/ directory
2026-06-16 17:42:23 +02:00

24 lines
600 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "preserve",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
}