From 158c4a6f35fa5e619006f4fc23e7193b18915942 Mon Sep 17 00:00:00 2001 From: Matt Sykes Date: Fri, 6 Mar 2026 17:34:28 -0500 Subject: [PATCH] Fixes go to definition and intellisense for @ imports that are everywher --- jsconfig.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 000000000..30e99a02e --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["src/*"] + } + }, + "include": ["src"] + } \ No newline at end of file