WebsiteButAgainTheSequelToT.../tsconfig.json

20 lines
294 B
JSON
Raw Normal View History

2024-12-19 18:26:17 -06:00
{
"extends": "astro/tsconfigs/strict",
2024-12-19 20:34:51 -06:00
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
}
}
}