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
This change adds initial support for feature flags in the
extension so that we can enable new experimental features
conditionally while maintaining current behavior for most users.
This introduces a new setting:
`powershell.developer.featureFlags`
Copy file name to clipboardExpand all lines: package.json
+5
Original file line number
Diff line number
Diff line change
@@ -325,6 +325,11 @@
325
325
"default": "",
326
326
"description": "Specifies the path to a PowerShell Script Analyzer settings file. Use either an absolute path (to override the default settings for all projects) or use a path relative to your workspace."
327
327
},
328
+
"powershell.developer.featureFlags": {
329
+
"type": "array",
330
+
"default": [],
331
+
"description": "An array of strings used to enable experimental features in the PowerShell extension."
0 commit comments