mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Add build output directories to list of possible file exclusions
- Accurately describes the build output directories in this LSP implementation
This commit is contained in:
9
lsp-sample/.vscode/settings.json
vendored
9
lsp-sample/.vscode/settings.json
vendored
@ -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"
|
||||
|
||||
Reference in New Issue
Block a user