Following a project refactor, certain files were relocated to a different npm package, leading to changes in source files to re-export them from their new location (in order to streamline the migration process).
Later on, I came across a helpful refactoring called 'Change ES6 import' that enables the modification of imports from re-exported types to original ones:
https://i.sstatic.net/TyXId.png
Is there a way to apply this refactoring to all files in the project at once? Are there any other refactoring techniques or methods to achieve this?