diff --git a/src/vs/workbench/api/node/extHostDebugService.ts b/src/vs/workbench/api/node/extHostDebugService.ts index 23ec3e88954..db4e3f67c92 100644 --- a/src/vs/workbench/api/node/extHostDebugService.ts +++ b/src/vs/workbench/api/node/extHostDebugService.ts @@ -97,7 +97,7 @@ export class ExtHostDebugService extends ExtHostDebugServiceBase { cwd: args.cwd, name: args.title || nls.localize('debug.terminal.title', "debuggee"), }; - delete args.cwd; + delete (args as any).cwd; // TODO: remove this any cast this._integratedTerminalInstance = this._terminalService.createTerminalFromOptions(options); }