- 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.
19 lines
313 B
JSON
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"
|
|
}
|
|
} |