How does AST traversal with Babel affect source maps even when no changes are made?
I have a custom Webpack loader where I’m traversing through the AST of the code using Babel to change the import name of a module. However, it seems like this is affecting the source maps of modules, even when the loader doesn’t make any changes to their AST. Why is this happening?