File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 40
40
"rollup" : " ^0.58.2" ,
41
41
"rollup-plugin-commonjs" : " ^9.1.3" ,
42
42
"rollup-plugin-license" : " ^0.6.0" ,
43
+ "rollup-plugin-node-builtins" : " ^2.1.2" ,
43
44
"rollup-plugin-node-resolve" : " ^3.3.0" ,
44
45
"rollup-plugin-npm" : " ^2.0.0" ,
45
46
"rollup-plugin-typescript2" : " ^0.13.0" ,
Original file line number Diff line number Diff line change
1
+ import builtins from 'rollup-plugin-node-builtins' ;
1
2
import commonjs from 'rollup-plugin-commonjs' ;
2
3
import uglify from 'rollup-plugin-uglify' ;
3
4
import resolve from 'rollup-plugin-node-resolve' ;
@@ -17,6 +18,7 @@ const bundleConfig = {
17
18
} ,
18
19
context : 'window' ,
19
20
plugins : [
21
+ builtins ( ) ,
20
22
typescript ( {
21
23
tsconfig : 'tsconfig.build.json' ,
22
24
tsconfigOverride : { compilerOptions : { declaration : false } } ,
You can’t perform that action at this time.
0 commit comments