ts-importer
ts-importer copied to clipboard
Not merging default and named imports
Hi.
When I import, from the same module, a named export and then the default export (or the other way around), it produces two different import entries instead of a single one.
Expected result:
import something, { named } from "./something";
Actual result:
import something from "./something";
import { named } from "./something";
Thanks for your time.