From 824dd4349a2c528526f205944ffb1d5bc1e45ad2 Mon Sep 17 00:00:00 2001 From: Matt Isenhower Date: Sun, 17 Mar 2024 09:11:37 -0700 Subject: [PATCH] Add jsconfig --- jsconfig.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..5a1f2d2 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "paths": { + "@/*": ["./src/*"] + } + }, + "exclude": ["node_modules", "dist"] +}