-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
41 lines (39 loc) · 1017 Bytes
/
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
import babel from 'rollup-plugin-babel';
import pkg from './package.json';
import { version as runtimeVersion } from '@babel/runtime/package.json';
const deps = new Set([
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
]);
export default {
external: (id) => deps.has(id) || id.startsWith('@babel/runtime/'),
input: './src/index.js',
output: {
file: './dist/index.js',
format: 'cjs',
},
plugins: [
babel({
plugins: [
[
'@babel/plugin-transform-runtime',
{
// Explicitly specifying this version lets the plugin be more liberal with the helpers
// that it imports instead of inlining.
version: runtimeVersion,
},
],
],
presets: [
[
'@babel/preset-env',
{
exclude: ['@babel/plugin-transform-classes'],
targets: { node: '4.0' },
},
],
],
runtimeHelpers: true,
}),
],
};