Added import alises and also fixed font issues

This commit is contained in:
2024-11-14 12:13:04 +02:00
parent 4bc9b34b10
commit debc09cb3b
33 changed files with 63 additions and 49 deletions

View File

@@ -1,6 +1,18 @@
{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"strictNullChecks": true
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@layouts/*": [
"src/layouts/*"
],
"@components/*": [
"src/components/*"
],
"@styles/*": [
"src/styles/*"
]
}
}
}