Skip to content

module.exports = { ... } are stripped instead of being transformed #125

@Lutymane

Description

@Lutymane

Example:

const c0 = 0;
const c1 = 1;

module.exports = {
  c0,
  c1,
};

Incorrect result:

const c0 = 0;
const c1 = 1;

Expected:

const c0 = 0;
const c1 = 1;

export {
  c0,
  c1,
};

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions