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 330e595 commit 1a6d96aCopy full SHA for 1a6d96a
src/utilities/workspace.ts
@@ -58,6 +58,8 @@ export async function isValidWorkspaceFolder(
58
(!disableSwiftPMIntegration && (await pathExists(folder, "Package.swift"))) ||
59
(await pathExists(folder, "compile_commands.json")) ||
60
(await pathExists(folder, "compile_flags.txt")) ||
61
- (await pathExists(folder, "buildServer.json"))
+ (await pathExists(folder, "buildServer.json")) ||
62
+ (await pathExists(folder, "build")) ||
63
+ (await pathExists(folder, "out"))
64
);
65
}
0 commit comments