-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsup.config.ts
51 lines (47 loc) · 1.27 KB
/
tsup.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { defineConfig } from 'tsup';
import { builtinModules } from 'module';
import pkg from './package.json';
export default defineConfig({
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
dts: true,
sourcemap: true,
clean: true,
splitting: false,
minify: false,
platform: 'node',
target: 'node23',
// Bundle problematic packages
noExternal: [
'form-data',
'combined-stream',
'delayed-stream',
'mime-types',
'mime-db',
'asynckit',
'util'
],
external: [
"@elizaos/core",
...builtinModules.filter(mod => mod !== 'util'),
...Object.keys(pkg.dependencies || {})
.filter(dep => !['form-data', 'combined-stream', 'delayed-stream',
'mime-types', 'mime-db', 'asynckit'].includes(dep))
],
esbuildOptions: (options) => {
options.mainFields = ['module', 'main'];
options.banner = {
js: `
import { createRequire } from 'module';
import { fileURLToPath } from 'url';
import { dirname } from 'path';
const require = createRequire(import.meta.url);
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
`
};
options.define = {
'process.env.NODE_ENV': '"production"'
};
}
});