You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
278 B
JavaScript

import commonjs from '@rollup/plugin-commonjs';
import { nodeResolve } from '@rollup/plugin-node-resolve';
export default {
input: 'index.js',
output: {
dir: 'dist',
format: 'umd',
name: 'namehash'
},
plugins: [commonjs(), nodeResolve({ browser: true })]
};