From 012e3ee0b4ef4eb7ea7a7c5b80c8c84f6d61bb21 Mon Sep 17 00:00:00 2001 From: 6by3 Date: Sat, 8 Aug 2020 14:43:47 +0530 Subject: [PATCH 1/3] Create jsconfig.json T his allows relative imports from the src directory ` ... ` --- 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..256380f --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "baseUrl": "src", + "paths": { + "*": ["src/*"] + } + } +} From 30f881d257007b8c2f8b48f93f91e3d51ea85cbc Mon Sep 17 00:00:00 2001 From: 6by3 Date: Sat, 8 Aug 2020 14:48:33 +0530 Subject: [PATCH 2/3] Create jsconfig.json This allows relative imports from the src directory ``` ...``` --- templates/jsconfig.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 templates/jsconfig.json diff --git a/templates/jsconfig.json b/templates/jsconfig.json new file mode 100644 index 0000000..256380f --- /dev/null +++ b/templates/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "baseUrl": "src", + "paths": { + "*": ["src/*"] + } + } +} From 50a8209b94e697d5273b79e95edaf0584c709a3b Mon Sep 17 00:00:00 2001 From: 6by3 Date: Sat, 8 Aug 2020 14:49:51 +0530 Subject: [PATCH 3/3] Delete jsconfig.json --- jsconfig.json | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json deleted file mode 100644 index 256380f..0000000 --- a/jsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "baseUrl": "src", - "paths": { - "*": ["src/*"] - } - } -}