Files
website/tsconfig.json
2026-06-28 15:11:45 -04:00

20 lines
368 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"verbatimModuleSyntax": true,
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
},
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}