bugflowhelp wanted
Repository metrics
- Stars
- (4,946 stars)
- PR merge metrics
- (平均マージ 138d 22h) (30d で 3 merged PRs)
説明
With the following setup, there is an error in file-b:
file-a.js
export opaque type Foo: string = string;
file-b.js
export type { Foo } from './file-a';
However if the code in file-b.js is written differently (see below), it works fine.
file-b.js
import type { Foo } from './file-a';
export type { Foo };
Hence I think this is a bug.