Import utils and enable AllowJS

This commit is contained in:
Korbs 2024-06-07 03:16:20 -04:00
parent 09b80dac50
commit b06a135e18

View file

@ -1,5 +1,7 @@
{
"compilerOptions": {
"strictNullChecks": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
// https://docs.astro.build/en/guides/aliases/
@ -7,6 +9,7 @@
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@styles/*": ["src/styles/*"],
"@utils/*": ["src/utils/*"]
}
}
}