Created
May 5, 2020 16:10
-
-
Save r3dm1ke/d98fbf2ed2aa670adcb6b1178371d82e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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