Skip to content

Commit

Permalink
fix: enable sourcemap in rollup config
Browse files Browse the repository at this point in the history
  • Loading branch information
shanmukhateja authored and l-lin committed Jan 3, 2021
1 parent 33c4c31 commit 2c3488d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion rollup-uglify.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ export default {
'@angular/platform-browser': 'ng.platform-browser',
'@angular/common': 'ng.common'
},
name: 'angular.datatables'
name: 'angular.datatables',
sourcemap: true
},
external: [
'@angular/core',
Expand Down
3 changes: 2 additions & 1 deletion rollup.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ export default {
'@angular/common': 'ng.common',
'jquery': '$'
},
format: 'umd'
format: 'umd',
sourcemap: true
},
external: [
'@angular/core',
Expand Down

0 comments on commit 2c3488d

Please sign in to comment.