From 511f4e9972232206c79cf60efd974de1666c0d46 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 11 Sep 2021 13:13:43 -0500 Subject: [PATCH] Configure compiler paths --- 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 0000000..6a18073 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/components/*": ["components/*"], + "@/helpers/*": ["helpers/*"], + } + } + }