-
-
Notifications
You must be signed in to change notification settings - Fork 282
/
rollup.config.js
43 lines (41 loc) · 1.14 KB
/
rollup.config.js
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
36
37
38
39
40
41
42
43
import resolve from 'rollup-plugin-node-resolve'
// import commonjs from 'rollup-plugin-commonjs'
import babel from 'rollup-plugin-babel'
export default {
input: 'src/index.js',
output: [
{ file: 'dist/index.js', format: 'cjs', sourcemap: true },
{ file: 'dist/index.es.js', format: 'es', sourcemap: true },
],
plugins: [
resolve({
// module: true, // Default: true
// jsnext: true, // Default: false
// main: true, // Default: true
extensions: ['.js'], // Default: ['.js']
// Lock the module search in this path (like a chroot). Module defined
// outside this path will be mark has external
// jail: './', // Default: '/'
// If true, inspect resolved files to check that they are
// ES2015 modules
// modulesOnly: true, // Default: false
}),
// commonjs({}),
babel({
babelrc: false,
plugins: ['transform-object-rest-spread'],
presets: [
[
'env',
{
modules: false,
targets: {
node: '6.10',
},
},
],
],
}),
],
external: ['path', 'globby', 'fs-p'],
}