Steps to reproduce: 1. in existing module `foo.js` add import for non-existent module `import Bar from "./bar.js"` 2. create `bar.js` with `export default class Bar {}` 3. return to `foo.js`. expected: `Bar` is defined but it isn't right now