We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da7ee7b commit 6ec8b4eCopy full SHA for 6ec8b4e
src/extension/debugger/configuration/launch.json/launchJsonReader.ts
@@ -11,7 +11,7 @@ export async function getConfigurationsForWorkspace(workspace: WorkspaceFolder):
11
const filename = path.join(workspace.uri.fsPath, '.vscode', 'launch.json');
12
if (!(await fs.pathExists(filename))) {
13
// Check launch config in the workspace file
14
- const codeWorkspaceConfig = getConfiguration('launch');
+ const codeWorkspaceConfig = getConfiguration('launch', workspace);
15
if (!codeWorkspaceConfig.configurations || !Array.isArray(codeWorkspaceConfig.configurations)) {
16
return [];
17
}
0 commit comments