UNPKG

@seydx/tr064

Version:
14 lines (12 loc) 548 B
import pkg from './package.json'; export default { external: ['cuid'], // CommonJS (for Node) and ES module (for bundlers) build. // (We could have three entries in the configuration array // instead of two, but it's quicker to generate multiple // builds from a single configuration where possible, using // an array for the `output` option, where we can specify // `file` and `format` for each target) input: 'src/index.js', output: [{ file: pkg.main, format: 'cjs' }, { file: pkg.module, format: 'es' }], };