### Input ```ts export default xxx export const name = xxx export function apply() {} ``` ### Output ```js // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { apply, default, // syntax error here name }); ```
Input
Output