You defined a type export in the last line of sifter.ts.
|
export * from './types.ts'; |
This line is converted to EMS like this.
export * from "./types.js";
However, types.js is a nearly empty file, which makes the export pointless.
export {};
//# sourceMappingURL=types.js.map
Would you mind to optimize the export?
You defined a type export in the last line of sifter.ts.
sifter.js/lib/sifter.ts
Line 356 in 18a1a48
This line is converted to EMS like this.
However, types.js is a nearly empty file, which makes the export pointless.
Would you mind to optimize the export?