You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constmsg=`Could not install local extensions on remote workspace. Please enable [Settings Sync](https://www.gitpod.io/docs/ides-and-editors/settings-sync#enabling-settings-sync-in-vs-code-desktop) with Gitpod.`;
constmsg=`Could not install local extensions on remote workspace. Please enable [Settings Sync](https://www.gitpod.io/docs/ides-and-editors/settings-sync#enabling-settings-sync-in-vs-code-desktop) with Gitpod.`;
Copy file name to clipboardExpand all lines: src/settingsSync.ts
+35Lines changed: 35 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,41 @@ export interface ISyncData {
66
66
content: string;
67
67
}
68
68
69
+
// From https://github.com/microsoft/vscode/blob/5413247e57fb7e3d29cd36f08266005fe72bbde4/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.ts#L24-L30
70
+
exportinterfaceIStoredProfileExtension{
71
+
identifier: IExtensionIdentifier;
72
+
location: UriComponents|string;
73
+
relativeLocation: string|undefined;
74
+
version: string;
75
+
metadata?: Metadata;
76
+
}
77
+
interfaceUriComponents{
78
+
scheme: string;
79
+
authority?: string;
80
+
path?: string;
81
+
query?: string;
82
+
fragment?: string;
83
+
}
84
+
85
+
interfaceIGalleryMetadata{
86
+
id: string;
87
+
publisherId: string;
88
+
publisherDisplayName: string;
89
+
isPreReleaseVersion: boolean;
90
+
targetPlatform?: string;
91
+
}
92
+
93
+
typeMetadata=Partial<IGalleryMetadata&{
94
+
isApplicationScoped: boolean;
95
+
isMachineScoped: boolean;
96
+
isBuiltin: boolean;
97
+
isSystem: boolean;
98
+
updated: boolean;
99
+
preRelease: boolean;
100
+
installedTimestamp: number;
101
+
pinned: boolean;
102
+
}>;
103
+
69
104
functionisSyncData(thing: any): thing is ISyncData{
0 commit comments