-
Notifications
You must be signed in to change notification settings - Fork 6
/
rollup.config.js
57 lines (54 loc) · 1.03 KB
/
rollup.config.js
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
import typescript from "@rollup/plugin-typescript";
import { defineConfig } from "rollup";
import { dts } from "rollup-plugin-dts";
const external = [
"@xmtp/xmtp-js",
"@redis/client",
"cross-fetch",
"viem",
"viem/accounts",
"@xmtp/content-type-text",
"@xmtp/content-type-primitives",
"@xmtp/content-type-reaction",
"@xmtp/content-type-read-receipt",
"@xmtp/content-type-remote-attachment",
"@xmtp/content-type-reply",
"viem/chains",
];
const plugins = [
typescript({
declaration: false,
declarationMap: false,
target: "es2020",
}),
];
export default defineConfig([
{
input: "src/index.ts",
output: {
file: "dist/index.js",
format: "es",
sourcemap: true,
},
plugins,
external,
},
{
input: "src/index.ts",
output: {
file: "dist/index.cjs",
format: "cjs",
sourcemap: true,
},
plugins,
external,
},
{
input: "src/index.ts",
output: {
file: "dist/index.d.ts",
format: "es",
},
plugins: [dts()],
},
]);