10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
import config from '@openpanel/tsconfig/tsup.config.json' assert { type: 'json' };
|
|
|
|
export default defineConfig({
|
|
...(config as any),
|
|
entry: ['src/cli.ts'],
|
|
format: ['cjs', 'esm'],
|
|
});
|