From 9999f34e7c66f72420c3b670baedb3dfb11dc3b0 Mon Sep 17 00:00:00 2001 From: Ben Hong Date: Wed, 23 Feb 2022 10:31:00 -0800 Subject: [PATCH] config: add jsconfig for vetur --- jsconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..29037a6 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "~/*": ["./*"], + "@/*": ["./*"], + "~~/*": ["./*"], + "@@/*": ["./*"] + } + }, + "exclude": ["node_modules", ".nuxt", "dist"] +}