Files
kycnotme/web/tsconfig.json

17 lines
374 B
JSON
Raw Permalink Normal View History

2025-05-19 10:23:36 +00:00
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"noUncheckedIndexedAccess": true,
"jsx": "react-jsx",
2025-06-09 10:00:55 +00:00
"jsxImportSource": "react",
"types": [
"astro/client",
"vite-plugin-pwa/vanillajs",
"vite-plugin-pwa/info",
"vite-plugin-pwa/pwa-assets"
]
2025-05-19 10:23:36 +00:00
}
}