File: rollup.config.js

package info (click to toggle)
node-rollup-plugin-buble 0.19.4-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 156 kB
  • sloc: makefile: 38; sh: 2
file content (10 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
import pkg from './package.json';

export default {
	input: 'src/index.js',
	output: [
		{ format: 'es', file: pkg.module },
		{ format: 'cjs', file: pkg.main }
	],
	external: ['buble', 'rollup-pluginutils']
};