If I use it in a library and want to output two formats (esm and cjs), I can transform an import into only one format.
import { Button } from '@arco-design/mobile-react';
import Button from '@arco-design/mobile-react/esm/Button'; // in esm format
import Button from '@arco-design/mobile-react/cjs/Button'; // in cjs format
Describe the feature
If I use it in a library and want to output two formats (esm and cjs), I can transform an import into only one format.
Can this plugin support this case?