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 131b580 commit c31e5faCopy full SHA for c31e5fa
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