We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 736e6f4 commit e3e7beeCopy full SHA for e3e7bee
1 file changed
src/vs/workbench/parts/debug/electron-browser/debugService.ts
@@ -729,7 +729,8 @@ export class DebugService implements debug.IDebugService {
729
exceptionBreakpoints: this.model.getExceptionBreakpoints(),
730
watchExpressionsCount: this.model.getWatchExpressions().length,
731
extensionName: `${adapter.extensionDescription.publisher}.${adapter.extensionDescription.name}`,
732
- isBuiltin: adapter.extensionDescription.isBuiltin
+ isBuiltin: adapter.extensionDescription.isBuiltin,
733
+ launchJsonExists: !!this.configurationService.getConfiguration<debug.IGlobalConfig>('launch')
734
});
735
}).then(undefined, (error: any) => {
736
if (error instanceof Error && error.message === 'Canceled') {
0 commit comments