UNPKG

avocado-type-checker

Version:

A javascript type checker. Also a tasty fruit with megafauna dispersal syndrome, leading to an evolutionary anachronism.

17 lines (16 loc) 331 B
import eslint from 'rollup-plugin-eslint'; import nodeResolve from 'rollup-plugin-node-resolve'; export default { entry: 'index.js', dest: 'build/avocado_umd.js', format: 'umd', moduleName: 'avocado', sourceMap: 'inline', plugins: [ eslint(), nodeResolve({ jsnext: true, browser: true }) ] };