From 096d477fde288ae2616213b03d6f305823c05f05 Mon Sep 17 00:00:00 2001 From: Noa Virellia Date: Thu, 11 Dec 2025 12:35:57 +0800 Subject: [PATCH] feat(tsconfig): add tsconfig paths - Added paths for components and assets Signed-off-by: Noa Virellia --- tsconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 1e72ac4..19e893c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,11 @@ { "extends": "astro/tsconfigs/strict", "include": [".astro/types.d.ts", "**/*"], + "compilerOptions": { + "paths": { + "@assets/*": ["./src/assets/*"], + "@components/*": ["./src/components/*"] + } + }, "exclude": ["dist"] }