UNPKG

sl-nic-utils

Version:

Sri Lanka NIC Utilities - An adaptable npm package designed to validate NIC numbers, determine the NIC format, convert between OLD and NEW formats, and extract detailed information from Sri Lanka National Identity Card (NIC) numbers.

26 lines (24 loc) 552 B
import typescript from 'rollup-plugin-typescript2'; import { nodeResolve } from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; export default [ { input: 'src/index.ts', output: [ { file: 'dist/index.cjs.js', format: 'cjs', exports: 'default', }, { file: 'dist/index.esm.js', format: 'esm', }, ], plugins: [ nodeResolve(), commonjs(), typescript({ tsconfig: './tsconfig.json' }), ], }, ];