-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
36 lines (34 loc) · 986 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
import dts from 'rollup-plugin-dts'
import typescript from '@rollup/plugin-typescript'
import cleanup from 'rollup-plugin-cleanup'
import pkg from './package.json'
const external = Object.keys(pkg.dependencies)
/** @type {import('rollup').RollupOptions} */
export default [
{
input: 'src/index.ts',
output: {
file: pkg.main,
format: 'cjs',
sourcemap: true,
exports: 'named',
},
plugins: [typescript({target: 'es6'}), cleanup({extensions: ['js', 'ts']})],
external,
},
{
input: 'src/index.ts',
output: {
file: pkg.module,
format: 'esm',
sourcemap: true,
},
plugins: [typescript({target: 'es2020'}), cleanup({extensions: ['js', 'ts']})],
external,
},
{
input: 'src/index.ts',
output: {file: pkg.types, format: 'esm'},
plugins: [dts(), cleanup({extensions: ['d.ts']})],
},
]