We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1486306 commit 43f3fd9Copy full SHA for 43f3fd9
src/debug/validatePreDebug.ts
@@ -41,7 +41,7 @@ export async function preDebugValidate(actionContext: IActionContext, debugConfi
41
let shouldContinue: boolean;
42
context.telemetry.properties.debugType = debugConfig.type;
43
44
- // If one of the `preLaunchTasks` already handles starting emulators, we should skip the pre-validate prompts and setup for them
+ // If one of the `preLaunchTasks` already handles starting emulators, assume we can skip our pre-validate setup for them
45
const preLaunchTaskName: string | undefined = debugConfig.preLaunchTask;
46
const preLaunchTaskChain: string[] = preLaunchTaskName ? getPreLaunchTaskChain(workspace, preLaunchTaskName) : [];
47
const hasEmulatorTask: boolean = preLaunchTaskChain.some(label => emulatorTaskRegExp.test(label));
0 commit comments