From 96a84d772c0390b6234077914afdc7c429cb5ed8 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Mon, 25 Apr 2022 17:09:27 -0500 Subject: [PATCH] Add ~ path alias --- 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..f7796d1 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "~/*": ["./*"] + } + } +}