Co-authored-by: Ralph Khreish <Crunchyman-ralph@users.noreply.github.com> Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
import { defineConfig } from 'tsup';
|
|
import { cliConfig, mergeConfig } from '@tm/build-config';
|
|
|
|
export default defineConfig(
|
|
mergeConfig(cliConfig, {
|
|
entry: ['src/index.ts']
|
|
})
|
|
);
|