Skip to content

Commit 6fd8653

Browse files
committed
Fix globalPlugins TSServer Flag
**Bug** globalPlugins flag not being threaded through IOSession object properly **Fix** Pass these flags to superclass in IOSession
1 parent f071928 commit 6fd8653

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/server/server.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,9 @@ namespace ts.server {
401401
byteLength: Buffer.byteLength,
402402
hrtime: process.hrtime,
403403
logger,
404-
canUseEvents});
404+
canUseEvents,
405+
globalPlugins: options.globalPlugins,
406+
pluginProbeLocations: options.pluginProbeLocations});
405407

406408
if (telemetryEnabled && typingsInstaller) {
407409
typingsInstaller.setTelemetrySender(this);

0 commit comments

Comments
 (0)