aboutsummaryrefslogtreecommitdiff
path: root/code/.vscode/settings.json
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-27 20:52:43 +0100
committerAleksey Kladov <[email protected]>2018-08-27 20:52:43 +0100
commit422efe59afe333a8371afe6f9fb45f159a6fb07f (patch)
treecfdc2a4209419e690257cff2235b3fd3f75fe53d /code/.vscode/settings.json
parent57518153147ad53639f16cc940d219dc582c550a (diff)
you better run
Diffstat (limited to 'code/.vscode/settings.json')
-rw-r--r--code/.vscode/settings.json9
1 files changed, 5 insertions, 4 deletions
diff --git a/code/.vscode/settings.json b/code/.vscode/settings.json
index 2910204e8..30bf8c2d3 100644
--- a/code/.vscode/settings.json
+++ b/code/.vscode/settings.json
@@ -1,10 +1,11 @@
1// Place your settings in this file to overwrite default and user settings. 1// Place your settings in this file to overwrite default and user settings.
2{ 2{
3 "files.exclude": { 3 "files.exclude": {
4 "out": true 4 "out": false // set this to true to hide the "out" folder with the compiled JS files
5 // "node_modules": true
6 }, 5 },
7 "search.exclude": { 6 "search.exclude": {
8 "out": true // set this to false to include "out" folder in search results 7 "out": true // set this to false to include "out" folder in search results
9 } 8 },
10} 9 // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
10 "typescript.tsc.autoDetect": "off"
11} \ No newline at end of file