- 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
19 lines
321 B
JSON
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" }
|
|
]
|
|
}
|