From d6638e24bbee101f4acc38993dcc12ccc256ca1c Mon Sep 17 00:00:00 2001 From: Nathan Boyd Date: Tue, 16 Jan 2018 14:02:19 -0500 Subject: [PATCH] Add build output directories to list of possible file exclusions - Accurately describes the build output directories in this LSP implementation --- lsp-sample/.vscode/settings.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lsp-sample/.vscode/settings.json b/lsp-sample/.vscode/settings.json index 12511c65..a297c22d 100644 --- a/lsp-sample/.vscode/settings.json +++ b/lsp-sample/.vscode/settings.json @@ -1,9 +1,14 @@ { + // set to false to hide directory from the VS Code Document Sidebar "files.exclude": { - "out": false // set this to true to hide the "out" folder with the compiled JS files + "client/out/**/*": false, + "client/server/**/*": false, + "client/node_modules": false, + "server/node_modules": false }, + // set this to false to include "out" folder in search results "search.exclude": { - "out": true // set this to false to include "out" folder in search results + "out": true }, "typescript.tsdk": "./node_modules/typescript/lib", "typescript.tsc.autoDetect": "off"