import { build } from 'esbuild'

build({
  entryPoints: ['src/index.tsx'],
  bundle: true,
  minify: true,
  sourcemap: true,
  target: ['chrome58', 'firefox57', 'safari11', 'edge18'],
  outfile: 'bundle.js',
  plugins: [],
})