UNPKG

ipay-payment-gateway

Version:

Nodejs library to accept ipay (ipay.com.bd) payments on your backend application

12 lines (10 loc) 241 B
import { defineConfig } from 'tsup'; export default defineConfig({ entry: ['./src/index.ts'], clean: true, dts: true, external: ['node-fetch'], format: ['cjs', 'esm'], minify: false, tsconfig: './tsconfig.build.json', });