UNPKG

areacode-to-zipcode

Version:

Translate area codes to zip codes. A utility for looking up postal codes in the US.

10 lines (9 loc) 276 B
import { defineConfig } from "tsup"; export default defineConfig({ entry: ["lib/index.ts"], format: ["cjs", "esm"], // Build for commonJS and ESmodules dts: true, // Generate declaration file (.d.ts) splitting: false, sourcemap: true, clean: true, });