rust/editors/code/.vscode/settings.json

12 lines
445 B
JSON
Raw Normal View History

2018-07-30 13:58:49 -05:00
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
2018-08-27 14:52:43 -05:00
"out": false // set this to true to hide the "out" folder with the compiled JS files
2018-07-30 13:58:49 -05:00
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
2018-08-27 14:52:43 -05:00
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off"
2018-10-08 16:38:33 -05:00
}