UNPKG

276 BJavaScriptView Raw
1import commonjs from 'rollup-plugin-commonjs'
2
3export default {
4 input: 'index.js',
5 output: [{
6 file: 'dist/umoji.umd.js',
7 format: 'umd',
8 name: 'umoji'
9 }, {
10 file: 'dist/umoji.esm.js',
11 format: 'esm',
12 name: 'umoji'
13 }],
14
15 plugins: [commonjs()]
16};
\No newline at end of file