-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
52 lines (51 loc) · 1.3 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
45
46
47
48
49
50
51
52
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import image from '@rollup/plugin-image';
import json from '@rollup/plugin-json';
import typescript from '@rollup/plugin-typescript';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
import dts from 'rollup-plugin-dts';
import pkg from './package.json';
import babel from 'rollup-plugin-babel';
import terser from '@rollup/plugin-terser';
export default [
{
input: 'src/index.ts',
output: [
{
file: pkg.main,
format: 'cjs',
},
{
file: pkg.module,
format: 'esm',
},
],
external: [...Object.keys(pkg.dependencies)],
plugins: [
peerDepsExternal(),
babel({
exclude: 'node_modules/**',
presets: [
'@babel/preset-env',
'@babel/preset-react',
'@babel/preset-typescript',
],
}),
resolve(),
commonjs(),
typescript({tsconfig: './tsconfig.json'}),
// Minify es bundle.
terser(),
// Bundle image and json files.
image(),
json(),
],
},
{
input: 'src/index.ts',
output: [{file: 'dist/index.d.ts', format: 'esm'}],
// This is a plugin that lets you roll-up your .d.ts definition files.
plugins: [dts()],
},
];