mirror of
https://github.com/reonokiy/blog.nokiy.net.git
synced 2025-06-14 18:56:46 +02:00

- 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.
18 lines
312 B
JSON
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"]
|
|
}
|