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

12 lines
445 B
JSON
Raw Normal View History

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