website/tsconfig.json

16 lines
331 B
JSON
Raw Normal View History

2023-04-07 00:25:47 +02:00
{
2023-04-11 21:10:41 +02:00
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
2023-04-14 21:27:12 +02:00
"allowJs": true,
"jsx": "preserve",
2023-04-29 21:00:17 +02:00
"jsxImportSource": "solid-js",
"baseUrl": "src",
"paths": {
2023-06-08 00:03:20 +02:00
"@assets/*": ["assets/*"],
2023-04-29 21:00:17 +02:00
"@layouts/*": ["layouts/*"],
"@components/*": ["components/*"],
2023-10-29 08:45:49 +01:00
"@utils/*": ["utils/*"]
2023-04-29 21:00:17 +02:00
}
2023-10-29 08:45:49 +01:00
}
}