// module1.js
export const hello = 'world';
// module2.js
export * as mod1 from './module1'
// module3.js
import { mod1 } from './module2'; // <-- getting "mod1 not found", triggered by `import/named` rule.
I can create a repro case if needed.
Thanks for the report! If you're not able to PR a fix, a PR with the failing test case would be stellar <3