forked from ai16z/agent-twitter-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
61 lines (60 loc) · 1.13 KB
/
rollup.config.mjs
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
52
53
54
55
56
57
58
59
60
61
import dts from 'rollup-plugin-dts';
import esbuild from 'rollup-plugin-esbuild';
export default [
{
input: 'src/_module.ts',
plugins: [
esbuild({
define: {
PLATFORM_NODE: 'false',
PLATFORM_NODE_JEST: 'false',
},
}),
],
output: [
{
file: 'dist/default/cjs/index.js',
format: 'cjs',
sourcemap: true,
},
{
file: 'dist/default/esm/index.mjs',
format: 'es',
sourcemap: true,
},
],
},
{
input: 'src/_module.ts',
plugins: [
esbuild({
define: {
PLATFORM_NODE: 'true',
PLATFORM_NODE_JEST: 'false',
},
}),
],
output: [
{
file: 'dist/node/cjs/index.cjs',
format: 'cjs',
sourcemap: true,
inlineDynamicImports: true,
},
{
file: 'dist/node/esm/index.mjs',
format: 'es',
sourcemap: true,
inlineDynamicImports: true,
},
],
},
{
input: 'src/_module.ts',
plugins: [dts()],
output: {
file: 'dist/types/index.d.ts',
format: 'es',
},
},
];