mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-14 03:30:19 +00:00
bcc31ca331
* ✨ feat(bot): add hidden iMessage backend foundation * 🐛 fix(bot): align iMessage search totals and attachment timeout * ♻️ refactor(bot): derive gateway runtime user from provider * ✨ feat(device): add message API calls
9 lines
150 B
TypeScript
9 lines
150 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
dts: true,
|
|
entry: ['src/index.ts'],
|
|
format: ['esm'],
|
|
sourcemap: true,
|
|
});
|