mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
|
import { defineConfig, type Options } from 'tsup';
|
||
|
|
||
|
import { defaultConfig } from '../../tsup.shared.config.js';
|
||
|
|
||
|
export const config = Object.freeze({
|
||
|
...defaultConfig,
|
||
|
entry: ['src/**/*.ts'],
|
||
|
} satisfies Options);
|
||
|
|
||
|
export default defineConfig(config);
|