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:
Nathan Boyd
2018-01-16 14:02:19 -05:00
parent cdcefe9df4
commit d6638e24bb

View File

@ -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"