UNPKG

avocado-type-checker

Version:

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

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