From 0e214af65a3bc08d39d83b8d924c7f735bf15ddb Mon Sep 17 00:00:00 2001 From: Mathias Date: Sun, 14 Aug 2022 22:00:38 +0200 Subject: [PATCH] Created the jsconfig.json to help editors with the @ alias --- client/jsconfig.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 client/jsconfig.json diff --git a/client/jsconfig.json b/client/jsconfig.json new file mode 100644 index 00000000..babf8fb3 --- /dev/null +++ b/client/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + } +} \ No newline at end of file