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
{{ message }}
This repository has been archived by the owner on Sep 15, 2022. It is now read-only.
The source map inclusion feature can include discovered source maps in node_modules. Typically, we would only want our application source maps.
Task:
Add a filter on source maps to only include (and include misses) for things matching a pattern so you can e.g., just do source map inclusion for application source files and not things in node_modules.
OR do something like add a glob/pattern matcher for files that is separate and just a pattern matcher so that you can exclude any type of files and then we could add that for like !**/node_modules/**/*.js.map as an implementation of Feature: Glob patterns to affect package.<PKG_NAME>.trace #21
The text was updated successfully, but these errors were encountered:
The source map inclusion feature can include discovered source maps in
node_modules
. Typically, we would only want our application source maps.Task:
node_modules
.!**/node_modules/**/*.js.map
as an implementation of Feature: Glob patterns to affectpackage.<PKG_NAME>.trace
#21The text was updated successfully, but these errors were encountered: