Skip to content

Commit

Permalink
Merge pull request #34 from sebastianrothe/fix-source-map-type
Browse files Browse the repository at this point in the history
fix: use RawSourceMap for sourcemap
  • Loading branch information
mihar-22 committed Mar 24, 2021
2 parents 23e4892 + b056107 commit b84dd43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transformer.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const transformer = (options = {}) => (source, filename) => {

return {
code: result.js.code + esInterop,
map: result.js.map,
map: JSON.stringify(result.js.map),
};
};

Expand Down

0 comments on commit b84dd43

Please sign in to comment.