aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/config.ts
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-02-04 22:13:46 +0000
committerVeetaha <[email protected]>2020-02-04 22:13:46 +0000
commitb89b22e43eb7e821674e0022f4061442b9e29394 (patch)
tree05ca0a665569aad393bd6c83cc9bcb0933d5085f /editors/code/src/config.ts
parentc9e1aab8803264a40023aa09600b0a8fab8e00ff (diff)
vscode: yet another refactor commit
Diffstat (limited to 'editors/code/src/config.ts')
-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 fc21c8813..c750b2d5c 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -23,9 +23,9 @@ export class Config {
23 lruCapacity: null | number = null; 23 lruCapacity: null | number = null;
24 displayInlayHints = true; 24 displayInlayHints = true;
25 maxInlayHintLength: null | number = null; 25 maxInlayHintLength: null | number = null;
26 excludeGlobs = []; 26 excludeGlobs: string[] = [];
27 useClientWatching = true; 27 useClientWatching = true;
28 featureFlags = {}; 28 featureFlags: Record<string, boolean> = {};
29 // for internal use 29 // for internal use
30 withSysroot: null | boolean = null; 30 withSysroot: null | boolean = null;
31 cargoWatchOptions: CargoWatchOptions = { 31 cargoWatchOptions: CargoWatchOptions = {