Skip to content

Commit e3e7bee

Browse files
committed
debug: add data if launchJson exists on debug start
1 parent 736e6f4 commit e3e7bee

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/vs/workbench/parts/debug/electron-browser/debugService.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,8 @@ export class DebugService implements debug.IDebugService {
729729
exceptionBreakpoints: this.model.getExceptionBreakpoints(),
730730
watchExpressionsCount: this.model.getWatchExpressions().length,
731731
extensionName: `${adapter.extensionDescription.publisher}.${adapter.extensionDescription.name}`,
732-
isBuiltin: adapter.extensionDescription.isBuiltin
732+
isBuiltin: adapter.extensionDescription.isBuiltin,
733+
launchJsonExists: !!this.configurationService.getConfiguration<debug.IGlobalConfig>('launch')
733734
});
734735
}).then(undefined, (error: any) => {
735736
if (error instanceof Error && error.message === 'Canceled') {

0 commit comments

Comments
 (0)