website/tsconfig.json

14 lines
299 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": {
"@layouts/*": ["layouts/*"],
"@components/*": ["components/*"],
"@utils/*": ["utils/*"],
}
},
2023-04-07 00:25:47 +02:00
}