bughelp wanted
仓库指标
- Star
- (4,946 star)
- PR 合并指标
- (平均合并 138天 22小时) (30 天内合并 3 个 PR)
描述
Simplified version: a.js:
export const a = 5
b.js:
export * from './a'
c.js:
import {a} from './b'
c.js errors with import/named: export a not found in b.js
however, when I try this simplified version, there is no error for c but it also doesn't error if I import x which definitely doesn't exist. So not sure what is going on…