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
Is your feature request related to a problem? Please describe.
I tried adding in sourceMapRenames and noticed that it wasn't a suggested option. I also typed in "false" instead of false by accident at first, since there wasn't a suggestion to press tab on.
Describe the feature you'd like
I'd like Intellisense to be added for the sourceMapRenames key.
The text was updated successfully, but these errors were encountered:
This is not readily possible today since we don't know what names are actually relevant in the current scope. Js-debug makes a guess if you type identifiers that have a rename, but it automatically falls back if they're undefined in the current scope.
It would be possible to find relevant renames if we did source code analysis on the project, but this has the potential to be expensive, especially for large minified bundles.
Testing #1033
Is your feature request related to a problem? Please describe.
I tried adding in
sourceMapRenames
and noticed that it wasn't a suggested option. I also typed in"false"
instead offalse
by accident at first, since there wasn't a suggestion to press tab on.Describe the feature you'd like
I'd like Intellisense to be added for the
sourceMapRenames
key.The text was updated successfully, but these errors were encountered: