-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
tsup.config.ts
62 lines (59 loc) · 1.38 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
52
53
54
55
56
57
58
59
60
61
62
import { polyfillNode } from "esbuild-plugin-polyfill-node"
import { rename } from "node:fs/promises"
import { join } from "node:path"
import { defineConfig, Options } from "tsup"
const BASE_OPTIONS: Options = {
clean: true,
dts: true,
outExtension: ({ format }) =>
format === "iife"
? {}
: {
js: `.${format === "cjs" ? "cjs" : "mjs"}`,
},
sourcemap: true,
splitting: false,
treeshake: true,
}
const BROWSER_OPTIONS: Options = {
esbuildPlugins: [
polyfillNode({
globals: {
buffer: true,
},
polyfills: {
buffer: true,
},
}),
],
}
export default defineConfig([
{
...BASE_OPTIONS,
...BROWSER_OPTIONS,
entry: ["src/index.browser.ts"],
format: ["cjs", "esm"],
name: "Browser",
},
{
...BASE_OPTIONS,
...BROWSER_OPTIONS,
dts: false,
entry: ["src/index.browser-bundle.ts"],
format: "iife",
globalName: "RPCWebSocket",
name: "Browser Bundle",
minify: true,
outExtension: () => ({
js: ".js",
}),
sourcemap: false,
target: "es2017",
},
{
...BASE_OPTIONS,
entry: ["src/index.ts"],
format: ["cjs", "esm"],
name: "Node",
},
])