-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrollup.dist.config.js
More file actions
36 lines (35 loc) · 757 Bytes
/
rollup.dist.config.js
File metadata and controls
36 lines (35 loc) · 757 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
36
import { babel, getBabelOutputPlugin } from '@rollup/plugin-babel'
import commonjs from '@rollup/plugin-commonjs'
export default [{
input: 'src/index.js',
output: [
{
file: 'dist/index.js',
format: 'es'
},
{
file: 'dist/index.es5.js',
format: 'es',
plugins: [getBabelOutputPlugin({ presets: ['@babel/preset-env'] })]
},
{
file: 'dist/index.cjs.js',
format: 'cjs',
plugins: [getBabelOutputPlugin({ presets: ['@babel/preset-env'] })]
}
]
}, {
input: 'src/index.js',
output: {
file: 'dist/index.iife.js',
format: 'iife',
name: 'SetExtension'
},
plugins: [
commonjs(),
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled'
})
]
}]