### Version ```sh rslib 0.0.8 ``` ### Details <img width="400" alt="image" src="https://github.com/user-attachments/assets/877241bc-9c94-4c0b-9dbf-4f7497dfdd0e"> ``` . ├── src │ ├── button │ │ └── index.tsx │ └── index.ts └── tsconfig.json ``` #### input ```ts // index.ts import button from './button'; ``` #### expected behavior ```javascript import button from './button/index.mjs'; ``` #### actual behavior ```javascript import button from './button.mjs'; ``` ### Reproduce link none ### Reproduce Steps none