forked from launchdarkly/react-client-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.ts
44 lines (42 loc) · 892 Bytes
/
rollup.config.ts
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 dts from 'rollup-plugin-dts';
import esbuild from 'rollup-plugin-esbuild';
import filesize from 'rollup-plugin-filesize';
import json from '@rollup/plugin-json';
import resolve from '@rollup/plugin-node-resolve';
import terser from '@rollup/plugin-terser';
const plugins = [resolve(), esbuild(), json(), terser(), filesize()];
const external = /node_modules/;
export default [
{
input: 'src/index.ts',
output: [
{
file: 'lib/cjs/index.js',
format: 'cjs',
sourcemap: true,
},
],
plugins,
external,
},
{
input: 'src/index.ts',
output: [
{
file: 'lib/esm/index.js',
format: 'esm',
sourcemap: true,
},
],
plugins,
external,
},
{
input: 'src/index.ts',
plugins: [dts(), json()],
output: {
file: 'lib/index.d.ts',
format: 'es',
},
},
];