Source code
Revision control
Copy as Markdown
Other Tools
import babel from 'rollup-plugin-babel';
export default {
input: './src/index.js',
output: {
format: 'cjs',
file: 'dist/index.js'
},
sourcemap: true,
plugins: [
babel()
],
external(id) {
return !/^[\.\/]/.test(id)
},
};