From bb1b290d91cb7dd4c80be00a028dd825389fd579 Mon Sep 17 00:00:00 2001 From: HenryC-3 <2324375439@qq.com> Date: Fri, 3 Mar 2023 11:10:16 +0800 Subject: [PATCH] =?UTF-8?q?WIP(volar):fix=20ts(6305)=20in=20`.vue`=20file?= =?UTF-8?q?=20-=20issue:=20[Volar=20doesn't=20perform=20the=20source=20fil?= =?UTF-8?q?e=20redirect=20for=20project=20references=20=C2=B7=20Issue=20#1?= =?UTF-8?q?815=20=C2=B7=20vuejs/language-tools](https://github.com/vuejs/l?= =?UTF-8?q?anguage-tools/issues/1815)=20-=20reproduce:=20[HenryC-3/D2N=20a?= =?UTF-8?q?t=20fix-ts(6305)](https://github.com/HenryC-3/D2N/tree/fix-ts(6?= =?UTF-8?q?305))?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 -- .vscode/settings.json | 10 ++++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index a547bf3..8b7e502 100644 --- a/.gitignore +++ b/.gitignore @@ -13,8 +13,6 @@ dist-ssr *.local # Editor directories and files -.vscode/* -!.vscode/extensions.json .idea .DS_Store *.suo diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..1d4e3aa --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,10 @@ +{ + "json.schemas": [ + { + "fileMatch": ["manifest.json"], + "url": "https://json.schemastore.org/chrome-manifest.json" + } + ], + "cSpell.words": ["crxjs"], + "volar.vueserver.noProjectReferences": true +}