From 7ba825fa8af4fdc8f8a26649751493b80e98e4d8 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 30 Jul 2023 17:17:54 +0200 Subject: [PATCH] Fixed a bug in the jsconfig.json --- jsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jsconfig.json b/jsconfig.json index 7256a73..6bb516b 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -3,8 +3,8 @@ "baseUrl": ".", "paths": { "@/*": ["./src/*"], - "@contexts/*": ["./src/common/components/*"], - "@components/*": ["./src/common/contexts/*"], + "@contexts/*": ["./src/common/contexts/*"], + "@components/*": ["./src/common/components/*"], "@states/*": ["./src/states/"] } }