diff --git a/src/vs/workbench/api/node/extHostTypes.ts b/src/vs/workbench/api/node/extHostTypes.ts index e5a97b4d9bc..787778bb165 100644 --- a/src/vs/workbench/api/node/extHostTypes.ts +++ b/src/vs/workbench/api/node/extHostTypes.ts @@ -1963,7 +1963,7 @@ export class DebugAdapterExecutable implements vscode.DebugAdapterExecutable { export class DebugAdapterServer implements vscode.DebugAdapterServer { readonly port: number; - readonly host: string; + readonly host?: string; constructor(port: number, host?: string) { this.port = port;