aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/config.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index a6e0f6454..e131f09df 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -31,7 +31,7 @@ export class Config {
31 public displayInlayHints = true; 31 public displayInlayHints = true;
32 public maxInlayHintLength: null | number = null; 32 public maxInlayHintLength: null | number = null;
33 public excludeGlobs = []; 33 public excludeGlobs = [];
34 public useClientWatching = false; 34 public useClientWatching = true;
35 public featureFlags = {}; 35 public featureFlags = {};
36 // for internal use 36 // for internal use
37 public withSysroot: null | boolean = null; 37 public withSysroot: null | boolean = null;
@@ -157,7 +157,7 @@ export class Config {
157 this.excludeGlobs = config.get('excludeGlobs') || []; 157 this.excludeGlobs = config.get('excludeGlobs') || [];
158 } 158 }
159 if (config.has('useClientWatching')) { 159 if (config.has('useClientWatching')) {
160 this.useClientWatching = config.get('useClientWatching') || false; 160 this.useClientWatching = config.get('useClientWatching') || true;
161 } 161 }
162 if (config.has('featureFlags')) { 162 if (config.has('featureFlags')) {
163 this.featureFlags = config.get('featureFlags') || {}; 163 this.featureFlags = config.get('featureFlags') || {};