blog/tsconfig.json
radishzzz 804cf72052 chore: update dependencies, enhance theme configuration, and improve layout structure
- Bump versions of several dependencies including @astrojs/mdx, astro, and vite.
- Refactor theme configuration to include code themes for light and dark modes.
- Update layout structure for better responsiveness and clarity.
- Enable JavaScript in TypeScript configuration for broader compatibility.
- Add new font styles and improve font-face definitions.
- Clean up unused imports and commented-out code in index.astro.
- Introduce global type definitions for Attributify attributes in JSX.
2025-01-21 21:21:24 +00:00

18 lines
312 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"allowJs": true
},
"include": [
"src/**/*.ts",
"src/**/*.astro",
"uno.config.ts",
"astro.config.ts"
],
"exclude": ["dist"]
}