import { defineConfig } from 'tsup'
import { tsupBase } from '@tooling/tsup-config'

export default defineConfig(
  tsupBase({
    entry: ['src/index.ts', 'src/health.ts', 'src/memory.ts', 'src/kv.ts', 'src/redis.ts'],
    external: ['@platform-modules/util', '@platform-modules/util/health', '@cloudflare/workers-types', 'ioredis'],
  }),
)
