aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/server.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-12-09 17:05:49 +0000
committerAleksey Kladov <[email protected]>2019-12-09 18:46:35 +0000
commit7ac4ea7fec018f76eed5b5c10fc96ba3d9b969be (patch)
treef43ba97761e636cfa522decae937743111a1ecbe /editors/code/src/server.ts
parent442ab3a34dfaf41bc3852acb9db20e0687d20b0c (diff)
Allow disabling sysroot
Might be helpful for debugging
Diffstat (limited to 'editors/code/src/server.ts')
-rw-r--r--editors/code/src/server.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/code/src/server.ts b/editors/code/src/server.ts
index b346c0828..e767b6f1b 100644
--- a/editors/code/src/server.ts
+++ b/editors/code/src/server.ts
@@ -57,7 +57,8 @@ export class Server {
57 maxInlayHintLength: Server.config.maxInlayHintLength, 57 maxInlayHintLength: Server.config.maxInlayHintLength,
58 excludeGlobs: Server.config.excludeGlobs, 58 excludeGlobs: Server.config.excludeGlobs,
59 useClientWatching: Server.config.useClientWatching, 59 useClientWatching: Server.config.useClientWatching,
60 featureFlags: Server.config.featureFlags 60 featureFlags: Server.config.featureFlags,
61 withSysroot: Server.config.withSysroot
61 }, 62 },
62 traceOutputChannel 63 traceOutputChannel
63 }; 64 };