Merge pull request #46 from nathan-boyd/master

Add build output directories to list of possible file exclusions
This commit is contained in:
Dirk Bäumer
2018-01-19 11:19:08 +01:00
committed by GitHub

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"