insight-ui-alterdot
Version:
An open-source frontend for the Insight API. The Insight API provides you with a convenient, powerful and simple way to query and broadcast data on the Alterdot network and build your own services with it.
20 lines (18 loc) • 458 B
JavaScript
import babel from 'rollup-plugin-babel';
import pkg from './package.json'
export default {
input: 'src/index.js',
output: {
name: 'c3',
format: 'umd',
banner: `/* @license C3.js v${pkg.version} | (c) C3 Team and other contributors | http://c3js.org/ */`
},
plugins: [babel({
presets: [['es2015', {
modules: false
}]],
plugins: [
'external-helpers'
]
})]
};