-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
44 lines (41 loc) · 1.26 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
44
import path from 'path'
import babel from '@rollup/plugin-babel'
import resolve from '@rollup/plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
const root = process.platform === 'win32' ? path.resolve( '/' ) : '/'
const external = ( id ) => !id.startsWith( '.' ) && !id.startsWith( root )
const extensions = [ '.js', '.jsx', '.ts', '.tsx', '.json' ]
const getBabelOptions = ({ useESModules }, targets ) => ({
babelrc: false,
extensions,
exclude: '**/node_modules/**',
babelHelpers: 'runtime',
presets: [
[ '@babel/preset-env', { loose: true, modules: false, targets }],
'@babel/preset-react',
'@babel/preset-typescript',
],
plugins: [ [ '@babel/transform-runtime', { regenerator: false, useESModules }] ],
})
export default [
{
input: './src/use-subscription.ts',
output: { file: 'dist/index.js', format: 'esm', exports: 'named' },
external,
plugins: [
babel( getBabelOptions({ useESModules: true }, '>1%, not dead, not ie 11, not op_mini all' ) ),
resolve({ extensions }),
terser(),
],
},
{
input: './src/use-subscription.ts',
output: { file: 'dist/index.cjs.js', format: 'cjs', exports: 'named' },
external,
plugins: [
babel( getBabelOptions({ useESModules: false }) ),
resolve({ extensions }),
terser(),
],
},
]