UNPKG

@codetanzania/majifix-account

Version:

A representation of an entity (i.e organization, individual, customer, or client) which receiving service(s) from a particular jurisdiction

21 lines (19 loc) 421 B
import { keys } from 'lodash'; import pkg from './package.json'; export default [ { input: 'src/index.js', external: [...keys(pkg.dependencies), ...keys(pkg.peerDependencies)], output: [ { file: pkg.main, format: 'cjs', interop: false, esModule: false, preferConst: true, strict: true, }, { file: pkg.module, format: 'es' }, ], }, ];