From 5fac964386773d8b05d1d566bcf0db585ca54c64 Mon Sep 17 00:00:00 2001 From: Raruto Date: Mon, 18 Sep 2023 07:05:41 +0200 Subject: [PATCH] Add `jsconfig.json` (#479) Add IntelliSense support for webpack aliases. Related to: https://github.com/g3w-suite/g3w-client/issues/348 --- jsconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 000000000..01a095d5d --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "baseUrl": "src", + "paths": { + "*": [ + "*", + "app/*", + "plugins/*" + ] + } + } +}