From fc31e0e3ebf3318aeff8338c44a8f6bcb343665d Mon Sep 17 00:00:00 2001 From: Kloon ImKloon Date: Fri, 18 Aug 2023 18:21:59 +0200 Subject: [PATCH] Proper Intellisense for IDEs --- frontend/jsconfig.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 frontend/jsconfig.json diff --git a/frontend/jsconfig.json b/frontend/jsconfig.json new file mode 100644 index 00000000..2b82f870 --- /dev/null +++ b/frontend/jsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +}