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
env - environment variables (the value null can be used to "undefine" a variable)
However, we don't actually implement it like that - we require all "env" values to be strings. So there's no way to unset a variable inherited from the global environment; at most, one can set it to an empty string. We should support null as described.
The text was updated successfully, but these errors were encountered:
https://code.visualstudio.com/docs/editor/debugging says:
However, we don't actually implement it like that - we require all "env" values to be strings. So there's no way to unset a variable inherited from the global environment; at most, one can set it to an empty string. We should support
null
as described.The text was updated successfully, but these errors were encountered: