Files
astro_daisyui/tsconfig.json
2025-07-31 15:41:00 +08:00

22 lines
343 B
JSON

{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"strictNullChecks": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./src/*"
]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
]
}