Files
core/packages/compiled/tsup.config.ts
Innei f60c1c23b3 chore: fix typo #2266
Signed-off-by: Innei <tukon479@gmail.com>
2024-12-19 14:17:08 +08:00

11 lines
196 B
TypeScript

import { defineConfig } from 'tsup'
export default defineConfig({
clean: true,
target: 'es2020',
entry: ['index.ts', 'auth.ts'],
dts: true,
external: ['mongodb'],
format: ['cjs'],
})