๐Ÿ“ฆ aleclarson / vite-postgres

๐Ÿ“„ tsup.config.ts ยท 8 lines
1
2
3
4
5
6
7
8import { defineConfig } from 'tsup'

export default defineConfig({
  entry: ['src/index.ts'],
  format: ['esm'],
  dts: true,
})