import-js/eslint-plugin-import

`export * as ns` false positive on import/named rule

Opened this issue · 3 comments

// 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

#1885 for failing tests. I could probs fix with some guidance.

Still an issue :(
Seems similar #1845