mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
12 lines
289 B
TypeScript
12 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);
|