-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
47 lines (43 loc) · 882 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
42
43
44
45
46
47
import resolve from '@rollup/plugin-node-resolve'
import babel from '@rollup/plugin-babel'
import del from 'rollup-plugin-delete'
import dts from 'rollup-plugin-dts'
const MAIN_FILE = 'index'
export default [
{
input: `src/${MAIN_FILE}.ts`,
output: [
{
file: `lib/${MAIN_FILE}.js`,
format: 'esm',
exports: 'default'
},
{
file: `lib/${MAIN_FILE}.cjs`,
format: 'cjs',
exports: 'auto'
}
],
external: [
'react'
],
plugins: [
del({ targets: 'lib/*' }),
resolve({ extensions: ['.js', '.ts', '.tsx'] }),
babel({
babelHelpers: 'bundled',
extensions: ['.js', '.ts', '.tsx']
})
]
},
{
input: `src/${MAIN_FILE}.ts`,
output: {
file: `lib/${MAIN_FILE}.d.ts`,
format: 'esm'
},
plugins: [
dts()
]
}
]