rust/code/.vscode/settings.json

11 lines
444 B
JSON
Raw Normal View History

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