From 51f53d9f9a2b357e6451c6c58e0235fb871e2a05 Mon Sep 17 00:00:00 2001 From: Thiru Date: Sat, 1 Aug 2020 18:07:42 +0200 Subject: [PATCH 1/2] Exclude node_modules #15 --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 50dfa3d..86dfd82 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,5 +8,8 @@ "editor.quickSuggestions": true }, "git.enableSmartCommit": true, - "git.postCommitCommand": "sync" + "git.postCommitCommand": "sync", + "files.exclude": { + "**/node_modules": true, + }, } From acb8399451939d529740f51ea400ec1027f10b2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jani=20Ev=C3=A4kallio?= Date: Tue, 4 Aug 2020 15:38:27 +0100 Subject: [PATCH 2/2] Add watcherExclude as well as files.exclude --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 2539c72..7b0880c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -10,7 +10,10 @@ "git.enableSmartCommit": true, "git.postCommitCommand": "sync", "files.exclude": { - "**/node_modules": true, + "**/node_modules": true + }, + "files.watcherExclude": { + "**/node_modules": true }, "vscodeMarkdownNotes.noteCompletionConvention": "noExtension" }