website/tsconfig.json
2025-05-22 17:46:02 +02:00

19 lines
333 B
JSON

{
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"baseUrl": "./src",
"strict": true,
"paths": {
"@/*": ["./*"]
},
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"jsx": "preserve",
"jsxImportSource": "solid-js"
},
"exclude": ["node_modules", "dist"]
}