--------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by-agent: Codex
15 lines
283 B
TypeScript
15 lines
283 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
export default defineConfig({
|
|
entry: [
|
|
'src/index.ts',
|
|
'src/widgets/index.ts',
|
|
'src/gamelet/index.ts',
|
|
'src/kits/gamelet/index.ts',
|
|
'src/kits/tool/index.ts',
|
|
'src/tools/index.ts',
|
|
],
|
|
dts: true,
|
|
format: 'esm',
|
|
})
|