From 8346d31cb8dd8d79bca74b322de3ba3a56950688 Mon Sep 17 00:00:00 2001 From: elweyn Date: Thu, 27 Jul 2023 09:53:34 +0200 Subject: [PATCH 1/3] fix(webapp): add jsconfig.json to navigate in webapp. --- webapp/jsconfig.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 webapp/jsconfig.json diff --git a/webapp/jsconfig.json b/webapp/jsconfig.json new file mode 100644 index 000000000..f0ff997a2 --- /dev/null +++ b/webapp/jsconfig.json @@ -0,0 +1,11 @@ +// tsconfig.json +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "~/*": [ + "./*" + ] + } + } +} \ No newline at end of file From fb0b29e5893606d660ce0131c6ca7be4b2d017d5 Mon Sep 17 00:00:00 2001 From: Hannes Heine Date: Fri, 4 Aug 2023 07:10:15 +0200 Subject: [PATCH 2/3] Update webapp/jsconfig.json Co-authored-by: mahula --- webapp/jsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/webapp/jsconfig.json b/webapp/jsconfig.json index f0ff997a2..8dc14a328 100644 --- a/webapp/jsconfig.json +++ b/webapp/jsconfig.json @@ -1,4 +1,3 @@ -// tsconfig.json { "compilerOptions": { "baseUrl": ".", From 01108252408944ce1dc4e0eecd9aba2718a66acd Mon Sep 17 00:00:00 2001 From: elweyn Date: Thu, 7 Sep 2023 10:51:39 +0200 Subject: [PATCH 3/3] Add ~* so we can write import ... from ~assets --- webapp/jsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webapp/jsconfig.json b/webapp/jsconfig.json index 8dc14a328..7e3695e4e 100644 --- a/webapp/jsconfig.json +++ b/webapp/jsconfig.json @@ -4,7 +4,10 @@ "paths": { "~/*": [ "./*" - ] + ], + "~*": [ + "./*" + ], } } } \ No newline at end of file