mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
12 lines
294 B
TypeScript
12 lines
294 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
banner: { js: '#!/usr/bin/env node' },
|
|
clean: true,
|
|
entry: ['src/index.ts'],
|
|
format: ['esm'],
|
|
noExternal: ['@lobechat/device-gateway-client', '@trpc/client', 'superjson'],
|
|
platform: 'node',
|
|
target: 'node18',
|
|
});
|