From 69a7d7966599a0e415d6b6ab5bda3c59beb144a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niko=C5=9B?= Date: Sun, 27 Apr 2025 00:26:42 +0200 Subject: [PATCH] Fix tsconfig paths. --- tsconfig.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index d6124308d..ca0c62214 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,15 +6,15 @@ "jsx": "react-jsx", "jsxImportSource": "react", "paths": { - "@utils/*": ["src/utils/*"], - "@data/*": ["src/data/*"], - "@components/*": ["src/components/*"], - "@sections/*": ["src/components/sections/*"], - "@ui/*": ["src/components/ui/*"], - "@layouts/*": ["src/layouts/*"], - "@assets/*": ["src/assets/*"], - "@i18n/*": ["src/i18n/*"], - "@src/*": ["src/*"] + "@utils/*": ["./src/utils/*"], + "@data/*": ["./src/data/*"], + "@components/*": ["./src/components/*"], + "@sections/*": ["./src/components/sections/*"], + "@ui/*": ["./src/components/ui/*"], + "@layouts/*": ["./src/layouts/*"], + "@assets/*": ["./src/assets/*"], + "@i18n/*": ["./src/i18n/*"], + "@src/*": ["./src/*"] } } }