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
Turns out we used to already do this and if you passed the flag you
would actually *disable* the global enable setting. This is because we
were defaulting to an empty array which means to enable it globally.
Fixescoder/code-server#4397Fixescoder/code-server#4480
Copy file name to clipboardExpand all lines: src/vs/workbench/services/extensions/common/abstractExtensionService.ts
+3
Original file line number
Diff line number
Diff line change
@@ -1132,6 +1132,9 @@ class ProposedApiController {
1132
1132
(_environmentService.isExtensionDevelopment&&productService.quality!=='stable')||// do not allow proposed API against stable builds when developing an extension
1133
1133
(this.enableProposedApiFor.length===0&&Array.isArray(_environmentService.extensionEnabledProposedApi));// always allow proposed API if --enable-proposed-api is provided without extension ID
0 commit comments