mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 23:18:26 +00:00
* Feat: added integration connect and mcp oAuth * Feat: add mcp support to chat * Fix: UI for integrations and logs * Fix: ui * Fix: proxy server * Feat: enhance MCP tool integration and loading functionality * Fix: added header * Fix: Linear integration sync --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
21 lines
480 B
TypeScript
21 lines
480 B
TypeScript
import { defineConfig } from 'tsup';
|
|
import { dependencies } from './package.json';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
format: ['cjs'], // or esm if you're using that
|
|
bundle: true,
|
|
target: 'node16',
|
|
outDir: 'bin',
|
|
splitting: false,
|
|
shims: true,
|
|
clean: true,
|
|
name: 'linear',
|
|
platform: 'node',
|
|
legacyOutput: false,
|
|
noExternal: Object.keys(dependencies || {}), // ⬅️ bundle all deps
|
|
treeshake: {
|
|
preset: 'recommended',
|
|
},
|
|
});
|