diff --git a/web/tsconfig.json b/web/tsconfig.json index 77da9dd..1a92f19 100644 --- a/web/tsconfig.json +++ b/web/tsconfig.json @@ -1,3 +1,11 @@ { - "extends": "astro/tsconfigs/strict" -} \ No newline at end of file + "extends": "astro/tsconfigs/strict", + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@components/*": ["src/components/*"], + "@layouts/*": ["src/layouts/*"], + "@utils/*": ["src/utils/*"] + } + } +}