rollup.config.js 230 B

123456789101112
  1. import commonjs from '@rollup/plugin-commonjs';
  2. import pkg from './package.json';
  3. export default {
  4. input: 'index.js',
  5. output: {
  6. name: 'fetchRetry',
  7. file: pkg.browser,
  8. format: 'umd'
  9. },
  10. plugins: [commonjs()]
  11. };