UNPKG

@codetanzania/emis-stakeholder

Version:

A representation of an entity (e.g municipal, individual, agency, organization etc) consisting of contact information (e.g. name, e-mail addresses, phone numbers) and other descriptive information of interest in emergency(or disaster) management.

25 lines (23 loc) 466 B
import { keys } from 'lodash'; import pkg from './package.json'; export default [ { input: 'src/index.js', external: [ 'irina/libs/utils', ...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' }, ], }, ];