UNPKG

git-like-audit-trail

Version:
18 lines (16 loc) 268 B
import babel from '@rollup/plugin-babel' export default { input: 'src/index.js', output: [ { file: 'dist/bundle.js', format: 'cjs' } ], plugins: [ babel({ babelHelpers: 'runtime', exclude: 'node_modules/**' }), ], };