nicholai-work-2026/tsconfig.json
nicholai 62855f4006 - Added React integration to the Astro configuration.
- Included Tailwind CSS as a Vite plugin.
- Updated package.json to include dependencies for React, React DOM, and Tailwind CSS.
- Adjusted TypeScript configuration to support JSX with React.
2025-12-06 04:13:36 -07:00

19 lines
313 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"strictNullChecks": true,
"types": [
"./worker-configuration.d.ts",
"node"
],
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}