UNPKG

@codetanzania/majifix-content

Version:

A representation of common information (i.e FAQ, Fee, Tariffs etc) that are published by a jurisdiction for general public.

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' }, ], }, ];