Skip to content

Commit

Permalink
adds sourcemaps (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwhitley authored Jan 8, 2024
1 parent 754ce7b commit d3e8c95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ export default async () => {
{
format: 'esm',
file: file.esm,
sourcemap: false,
sourcemap: true,
},
{
format: 'cjs',
file: file.cjs,
sourcemap: false,
sourcemap: true,
},
],
plugins: [
Expand Down

0 comments on commit d3e8c95

Please sign in to comment.