UNPKG

supabase-node-kit

Version:

A backend utility package for Supabase authentication and database functionality.

11 lines (9 loc) 192 B
import { defineConfig } from "tsup"; export default defineConfig({ entry: ["src/index.ts"], format: ["cjs", "esm"], dts: true, splitting: false, sourcemap: true, clean: true, });