mirror of
https://github.com/moeru-ai/airi.git
synced 2026-05-17 21:32:43 +00:00
12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
export default defineConfig({
|
|
entry: [
|
|
'src/index.ts',
|
|
'src/plugin-host/index.ts',
|
|
'src/plugin-host/runtimes/node/index.ts',
|
|
'src/plugin-host/runtimes/web/index.ts',
|
|
],
|
|
dts: true,
|
|
format: 'esm',
|
|
})
|