Allow configuring userDataDir, ExtensionDir, & usage of in-memory Secret Storage (#263451)

* Allow configuring userDataDir, ExtensionDir, & usage of in-memory Secret Storage

ref https://github.com/microsoft/vscode/issues/262164

* fix a couple references of getRandomUserDataDir
This commit is contained in:
Tyler James Leonhardt
2025-08-27 12:31:27 -07:00
committed by GitHub
parent 7b9e65ad42
commit 443daf8d60
10 changed files with 57 additions and 87 deletions
+3 -2
View File
@@ -19,12 +19,13 @@ export interface LaunchOptions {
playwright?: typeof playwright;
codePath?: string;
readonly workspacePath: string;
userDataDir: string;
readonly extensionsPath: string;
userDataDir?: string;
readonly extensionsPath?: string;
readonly logger: Logger;
logsPath: string;
crashesPath: string;
verbose?: boolean;
useInMemorySecretStorage?: boolean;
readonly extraArgs?: string[];
readonly remote?: boolean;
readonly web?: boolean;