Skip to content

Commit

Permalink
Mock-debug has actually implemented this. vscode does not properly re…
Browse files Browse the repository at this point in the history
…spect this property, microsoft/vscode#144211 (#80)
  • Loading branch information
roblourens authored Nov 4, 2022
1 parent cc3141e commit 95d0052
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off"
"typescript.tsc.autoDetect": "off",

"git.branchProtection": ["main"],
"git.branchProtectionPrompt": "alwaysCommitToNewBranch"
}
1 change: 1 addition & 0 deletions src/mockDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ export class MockDebugSession extends LoggingDebugSession {
response.body.supportSuspendDebuggee = true;
response.body.supportTerminateDebuggee = true;
response.body.supportsFunctionBreakpoints = true;
response.body.supportsDelayedStackTraceLoading = true;

this.sendResponse(response);

Expand Down

0 comments on commit 95d0052

Please sign in to comment.