-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup-config.js
More file actions
35 lines (32 loc) · 975 Bytes
/
Copy pathrollup-config.js
File metadata and controls
35 lines (32 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import nodeResolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import globals from 'rollup-plugin-node-globals';
import builtins from 'rollup-plugin-node-builtins';
export default {
entry: 'aot/app/main.js',
dest: 'app/build.js', // output a single application bundle
sourceMap: true,
sourceMapFile: 'app/build.js.map',
format: 'iife',
onwarn: function(warning) {
// Skip certain warnings
// should intercept ... but doesn't in some rollup versions
if ( warning.code === 'THIS_IS_UNDEFINED' ) { return; }
// console.warn everything else
console.warn( warning.message );
},
plugins: [
nodeResolve({
jsnext: true,
module: true,
preferBuiltins: false
}),
commonjs({
include: [
'node_modules/**'
]
}),
globals(),
builtins()
]
};