UNPKG

stats-percentile

Version:
14 lines (11 loc) 290 B
import { babel } from '@rollup/plugin-babel'; const config = { input: './index.js', output: { name: '_stats_percentile', dir: 'dist', format: 'umd' }, plugins: [babel({ babelHelpers: 'bundled' }, { useESModules: false })] }; export default config;