n-daisuke897-blog/tsconfig.json
Daisuke 398bfcbb11 chore: update Astro/Preact deps and add TS/ESLint tooling
- Bump @astrojs/* and preact to latest minor versions
- Add Astro TS plugin and language server packages
- Introduce ESLint plugins for React, Astro, and TypeScript
- Update TypeScript to 5.9.x
- Enable @astrojs/ts-plugin in tsconfig.json
- Regenerate package-lock.json accordingly
2025-12-31 20:58:07 +09:00

19 lines
321 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"strictNullChecks": true,
"allowJs": true
},
"plugins": [
{ "name": "@astrojs/ts-plugin" }
]
}