Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Created May 5, 2020 16:10
Show Gist options
  • Select an option

  • Save r3dm1ke/d98fbf2ed2aa670adcb6b1178371d82e to your computer and use it in GitHub Desktop.

Select an option

Save r3dm1ke/d98fbf2ed2aa670adcb6b1178371d82e to your computer and use it in GitHub Desktop.
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import json from '@rollup/plugin-json';
export default {
input: 'index.js',
output: {
dir: 'output',
format: 'cjs'
},
plugins: [resolve(), json(), commonjs()]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment