0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/core/tsup.config.ts
2024-07-28 11:34:43 +08:00

11 lines
289 B
TypeScript

import { defineConfig, type Options } from 'tsup';
import { defaultConfig } from '../../tsup.shared.config.js';
export const config = Object.freeze({
...defaultConfig,
outDir: 'build',
onSuccess: 'pnpm run copy:apidocs',
} satisfies Options);
export default defineConfig(config);