From: Bekzat Samatov Date: Fri, 10 Nov 2023 17:55:53 +0000 (+0600) Subject: feat: add jsconfig.json for base template (#102) X-Git-Tag: v3.9.0~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f73c9b4ec2d433842dddddeca233c3c7aa6953b;p=thirdparty%2Fvuejs%2Fcreate-vue.git feat: add jsconfig.json for base template (#102) --- diff --git a/template/base/jsconfig.json b/template/base/jsconfig.json new file mode 100644 index 00000000..5a1f2d22 --- /dev/null +++ b/template/base/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "paths": { + "@/*": ["./src/*"] + } + }, + "exclude": ["node_modules", "dist"] +}