Add flag for "simple" debug UI (#128801)

* Implement simple debug UI mode

* Don't show debug viewlet on step

* Move flag to proposed

* Pass around full debugUI options object

* Implement isSimpleUI in mock
This commit is contained in:
Rob Lourens
2021-07-19 17:49:17 -07:00
committed by GitHub
parent e5c6200888
commit 247e62d79a
10 changed files with 40 additions and 7 deletions

View File

@@ -1097,6 +1097,9 @@ export interface IStartDebuggingOptions {
repl?: IDebugSessionReplMode;
noDebug?: boolean;
compact?: boolean;
debugUI?: {
simple?: boolean;
};
}
export interface MainThreadDebugServiceShape extends IDisposable {