Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit c443a08

Browse files
authored
Merge pull request #1493 from shanmukhateja/fix-1479
fix(#1479): enable sourcemap in rollup config
2 parents 7bc6e9c + b901da4 commit c443a08

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

rollup-uglify.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ export default {
1010
'@angular/platform-browser': 'ng.platform-browser',
1111
'@angular/common': 'ng.common'
1212
},
13-
name: 'angular.datatables'
13+
name: 'angular.datatables',
14+
sourcemap: true
1415
},
1516
external: [
1617
'@angular/core',

rollup.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ export default {
99
'@angular/common': 'ng.common',
1010
'jquery': '$'
1111
},
12-
format: 'umd'
12+
format: 'umd',
13+
sourcemap: true
1314
},
1415
external: [
1516
'@angular/core',

0 commit comments

Comments
 (0)