I have a library passed from babel with precompiled source maps:
node_modules/mylib: index.js index.js.map mapTokens.js mapTokens.js.map plainObject.js plainObject.js.map Translator.js Translator.js.map
How to teach webpack to analyze these maps when I use this library in my project? Currently webpack creates the source map only for the main project, and not for libs in node_modules.
source share