mirror of
https://github.com/rjNemo/orbital-orbit
synced 2026-06-06 10:46:40 +00:00
- 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
12 lines
226 B
JSON
12 lines
226 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
}
|
|
}
|