Fix #594 - enable breakOnLoad by default
This commit is contained in:
Родитель
c54e7fa58b
Коммит
37b844a0b6
|
@ -58,7 +58,7 @@ export class ChromeDebugAdapter extends CoreDebugAdapter {
|
|||
}
|
||||
|
||||
public launch(args: ILaunchRequestArgs, telemetryPropertyCollector: ITelemetryPropertyCollector, seq?: number): Promise<void> {
|
||||
if (args.breakOnLoad && !args.breakOnLoadStrategy) {
|
||||
if ((args.breakOnLoad || typeof args.breakOnLoad === 'undefined') && !args.breakOnLoadStrategy) {
|
||||
args.breakOnLoadStrategy = 'instrument';
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче