mirror of
https://github.com/coder/code-server.git
synced 2026-06-23 10:27:11 +02:00
chore(vscode): update to 1.56.0
This commit is contained in:
@@ -25,9 +25,12 @@ export interface IEnvironmentMainService extends INativeEnvironmentService {
|
||||
backupHome: string;
|
||||
backupWorkspacesPath: string;
|
||||
|
||||
// --- V8 script cache path
|
||||
// --- V8 script cache path (ours)
|
||||
nodeCachedDataDir?: string;
|
||||
|
||||
// --- V8 script cache path (chrome)
|
||||
chromeCachedDataDir: string;
|
||||
|
||||
// --- IPC
|
||||
mainIPCHandle: string;
|
||||
|
||||
@@ -66,4 +69,7 @@ export class EnvironmentMainService extends NativeEnvironmentService implements
|
||||
|
||||
@memoize
|
||||
get nodeCachedDataDir(): string | undefined { return process.env['VSCODE_NODE_CACHED_DATA_DIR'] || undefined; }
|
||||
|
||||
@memoize
|
||||
get chromeCachedDataDir(): string { return join(this.userDataPath, 'Code Cache'); }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user