aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/config.ts')
-rw-r--r--editors/code/src/config.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index 3ade7e900..40f4c7a0d 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -156,6 +156,7 @@ export class Config {
156 get featureFlags() { return this.cfg.get("featureFlags") as Record<string, boolean>; } 156 get featureFlags() { return this.cfg.get("featureFlags") as Record<string, boolean>; }
157 get additionalOutDirs() { return this.cfg.get("additionalOutDirs") as Record<string, string>; } 157 get additionalOutDirs() { return this.cfg.get("additionalOutDirs") as Record<string, string>; }
158 get rustfmtArgs() { return this.cfg.get("rustfmtArgs") as string[]; } 158 get rustfmtArgs() { return this.cfg.get("rustfmtArgs") as string[]; }
159 get vscodeLldb() { return this.cfg.get("vscodeLldb") as boolean; }
159 160
160 get cargoWatchOptions(): CargoWatchOptions { 161 get cargoWatchOptions(): CargoWatchOptions {
161 return { 162 return {