提交 049b0b81 编写于 作者: M Matt Bierner

Supress TS 4.0 delete operator error

Cast to `any` while we work on a proper fix
上级 97e1bf75
......@@ -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);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册