mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 16:48:27 +00:00
* Feat: clustering fact statements * Feat: cluster drift * Feat: add recall count and model to search * Feat: Github integration * Fix: clustering UI * Improve graph * Bump: new version --------- 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: 'github',
|
|
platform: 'node',
|
|
legacyOutput: false,
|
|
noExternal: Object.keys(dependencies || {}), // ⬅️ bundle all deps
|
|
treeshake: {
|
|
preset: 'recommended',
|
|
},
|
|
});
|