--------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by-agent: Codex
12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
export default defineConfig({
|
|
entry: {
|
|
'index': 'src/index.ts',
|
|
'client/crossws': 'src/client/crossws/index.ts',
|
|
'server': 'src/server/index.ts',
|
|
'server/h3': 'src/server/h3/index.ts',
|
|
},
|
|
dts: true,
|
|
})
|