UNPKG

towers-express

Version:

Fast and simple express api creation with custom user's functions, built with TypeScript.

11 lines (9 loc) 192 B
// tsup.config.ts import { defineConfig } from 'tsup'; export default defineConfig({ entry: ['src/index.ts'], format: ['esm'], dts: true, outDir: 'dist', clean: true, });