Issue type
Feature Request:
Description
When pegjs produces an output .js file, it is in common js format:
module.exports = {
SyntaxError: peg$SyntaxError,
parse: peg$parse
};
I want the output as an es module instead:
export { peg$parse as parse, peg$SyntaxError as SyntaxError };
Issue type
Feature Request:
Description
When pegjs produces an output
.jsfile, it is in common js format:I want the output as an es module instead: