UNPKG

ngx-easy-d3

Version:

Build an Angular library compatible with AoT compilation and Tree shaking like an official package

23 lines (20 loc) 482 B
import sourcemaps from 'rollup-plugin-sourcemaps'; import license from 'rollup-plugin-license'; const path = require('path'); export default { output: { format: 'es', sourcemap: true }, plugins: [ sourcemaps(), license({ sourceMap: true, banner: { file: path.join(__dirname, 'license-banner.txt'), encoding: 'utf-8', } }) ], onwarn: () => { return } }