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

// `@platform-modules/realtime` is a workspace dep but imported type-only — externalized so its
// (empty) runtime barrel is never bundled in. `react`/`react-dom` are peers.
export default defineConfig(
  tsupBase({ entry: ['src/index.tsx'], external: ['react', 'react-dom', '@platform-modules/realtime'] }),
)
