The following is correctly picked up by `import/no-extraneous-dependencies` ```js import { myUtil } from '@my/utils'; export { myUtil }; ``` The following code is equivalent but does not get picked up by `import/no-extraneous-dependencies` ```js export { myUtil } from '@my/utils'; ``` Can support for this be added?