Files
v10/website/tsconfig.json
T
2025-10-20 18:14:37 -05:00

15 lines
287 B
JSON

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