Bläddra i källkod

Sets terminateDebuggee to false

Johan Mabille 4 år sedan
förälder
incheckning
349fa58be9
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      packages/debugger/src/session.ts

+ 1 - 1
packages/debugger/src/session.ts

@@ -133,7 +133,7 @@ export class DebuggerSession implements IDebugger.ISession {
   async stop(): Promise<void> {
     await this.sendRequest('disconnect', {
       restart: false,
-      terminateDebuggee: true
+      terminateDebuggee: false
     });
     this._isStarted = false;
   }