This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This script/codemod transforms imports from barrel files into direct imports. | |
* It's designed to work with jscodeshift to modify TypeScript/JavaScript files. | |
* | |
* Features: | |
* - Handles multiple barrel files | |
* - Transforms both value and type imports | |
* - Prefers @/ alias paths (from tsconfig paths) over ../ traversals | |
* - Handles re-exports within barrel files | |
* |