From e8c15ef4d81a9e8663caffa4327282538c1f8c9b Mon Sep 17 00:00:00 2001 From: Beck Samatov Date: Fri, 20 May 2022 02:08:17 +0600 Subject: [PATCH 1/3] feat: add jsconfig.json for base template --- template/base/jsconfig.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 template/base/jsconfig.json diff --git a/template/base/jsconfig.json b/template/base/jsconfig.json new file mode 100644 index 00000000..abe04df5 --- /dev/null +++ b/template/base/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + } +} From 84629ca3e81afa0fe5880329ccaa70545064ed05 Mon Sep 17 00:00:00 2001 From: Bekzat Samatov Date: Fri, 10 Nov 2023 23:29:08 +0600 Subject: [PATCH 2/3] chore: remove unnecessary option --- template/base/jsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/template/base/jsconfig.json b/template/base/jsconfig.json index abe04df5..b8d6842d 100644 --- a/template/base/jsconfig.json +++ b/template/base/jsconfig.json @@ -1,6 +1,5 @@ { "compilerOptions": { - "baseUrl": ".", "paths": { "@/*": ["./src/*"] } From 74269ba485744dc50cbd34937b938b18a13e61bc Mon Sep 17 00:00:00 2001 From: Beka Date: Fri, 10 Nov 2023 23:47:39 +0600 Subject: [PATCH 3/3] chore: exclude node_modules and dist --- template/base/jsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/template/base/jsconfig.json b/template/base/jsconfig.json index b8d6842d..5a1f2d22 100644 --- a/template/base/jsconfig.json +++ b/template/base/jsconfig.json @@ -3,5 +3,6 @@ "paths": { "@/*": ["./src/*"] } - } + }, + "exclude": ["node_modules", "dist"] }