From cedf21ee004ce517733cde13aaea2181cb4f1cad Mon Sep 17 00:00:00 2001 From: Kelvin Oghenerhoro Omereshone Date: Tue, 5 Dec 2023 12:24:32 +0100 Subject: [PATCH] fix(mellow-vue): add paths and baseUrl to compilerOptions --- templates/mellow-vue/jsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/mellow-vue/jsconfig.json b/templates/mellow-vue/jsconfig.json index 542e492f..40de32cc 100644 --- a/templates/mellow-vue/jsconfig.json +++ b/templates/mellow-vue/jsconfig.json @@ -13,6 +13,10 @@ "noUnusedLocals": true, "noUnusedParameters": true, "noEmitOnError": true, - "noErrorTruncation": true + "noErrorTruncation": true, + "baseUrl": ".", + "paths": { + "@/*": ["assets/js/*"] + } } }