mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 10:08:49 +01:00
Supress TS 4.0 delete operator error
Cast to `any` while we work on a proper fix
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user