Supress TS 4.0 delete operator error

Cast to `any` while we work on a proper fix
This commit is contained in:
Matt Bierner
2020-06-05 11:52:35 -07:00
parent 97e1bf75b8
commit 049b0b81e7

View File

@@ -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);
}