mirror of
https://github.com/moeru-ai/airi.git
synced 2026-05-19 08:10:45 +00:00
12 lines
204 B
TypeScript
12 lines
204 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
export default defineConfig([
|
|
{
|
|
entry: ['./src/run.ts'],
|
|
inlineOnly: [],
|
|
platform: 'node',
|
|
dts: true,
|
|
unused: true,
|
|
publint: true,
|
|
},
|
|
])
|