orbital-orbit/tsconfig.json
Ruidy 82aaf6e981
feat(ui): integrate tailwindcss and daisyui, update layouts
- Add TailwindCSS and DaisyUI for improved styling and theme support
- Refactor global styles to use Tailwind and DaisyUI plugins
- Update Header and Footer components for new design system
- Remove unused Hamburger and Navigation components
- Enhance BlogPost and Social components with new styles
- Adjust BaseLayout and page templates for better structure
- Update tsconfig for path alias support
2025-07-11 09:21:56 +02:00

12 lines
226 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}