blob: ee6343890eac4b796dbc8cabbf2c7f8f7d66704d [file] [log] [blame]
Tim van der Lippe652ccb72021-05-27 17:07:12 +01001const pkg = require('./package.json')
2const typescript = require('@rollup/plugin-typescript')
3
4export default {
5 input: 'src/index.ts',
6 external: Object.keys(pkg.dependencies),
7 plugins: [typescript()],
8 output: [
9 {
10 file: pkg.main,
11 format: 'cjs',
12 exports: 'auto'
13 },
14 {
15 file: pkg.module,
16 format: 'es'
17 }
18 ]
19}