shelveit
Version:
state persistence in json, yaml, toml, or ini files, optionally encrypted
19 lines (17 loc) • 371 B
JavaScript
import babel from 'rollup-plugin-babel';
import cjs from 'rollup-plugin-commonjs';
import resolve from 'rollup-plugin-node-resolve';
export default {
input: 'src/index.js',
output: {
file: 'dist/bundle.js',
format: 'cjs'
},
plugins: [
resolve(),
babel({
exclude: 'node_modules/**' // only transpile our source code
}),
cjs()
]
};