Hi
When I import index.js as esm module in the browser then the re-exported modules are not found because the extension (.js) is missing.
This should be fixed if you add the extension in the source (index.ts), e.g. export { compare } from './compare.js';
Hi
When I import index.js as esm module in the browser then the re-exported modules are not found because the extension (.js) is missing.
This should be fixed if you add the extension in the source (index.ts), e.g.
export { compare } from './compare.js';