Full Postmark email API coverage: send emails, manage templates, bounces, domains, webhooks, message streams, stats, suppressions, inbound rules, sender signatures, and data removals. Dual auth with server token (60 tools) and account token (22 tools).
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
format: ['esm'],
|
|
dts: true,
|
|
clean: true,
|
|
treeshake: true,
|
|
splitting: false,
|
|
});
|