We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2f71f65
esm
import { esm } from "https://esm.sh/build"; const mod = await esm` export const foo:string = "bar" `; console.log(mod.foo); // "bar"
// Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { foo, bar });
cjs
[foo,bar]