-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathtsup.config.ts
76 lines (72 loc) · 1.98 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import type { Options } from "tsup";
import { defineConfig } from "tsup";
import type { Plugin } from "esbuild";
export default defineConfig((options) => {
const defaults: Options = {
splitting: false,
sourcemap: true,
format: ["cjs", "esm"],
target: "node18",
dts: true,
treeshake: !options.watch,
outDir: "dist/",
external: [
"@apollo/client-react-streaming",
"@apollo/client-react-streaming/manual-transport",
"@apollo/client-integration-nextjs",
"react",
"rehackt",
],
noExternal: ["@apollo/client"], // will be handled by `acModuleImports`
esbuildPlugins: [acModuleImports],
};
function entry(
env: "browser" | "ssr" | "rsc" | "other",
input: string,
output: string
): Options {
return {
...defaults,
env: {
REACT_ENV: env,
},
target:
env === "browser"
? ["chrome109", "firefox115", "safari16", "edge119", "ios15"]
: defaults.target,
entry: {
[output]: input,
},
footer(ctx) {
return {
js:
ctx.format === "esm"
? `export const built_for_${env} = true;`
: `exports.built_for_${env} = true;`,
};
},
};
}
return [
{
...entry("other", "src/combined.ts", "combined"),
dts: { only: true },
},
entry("other", "src/empty.ts", "empty"),
entry("rsc", "src/index.rsc.ts", "index.rsc"),
entry("ssr", "src/index.ts", "index.ssr"),
entry("browser", "src/index.ts", "index.browser"),
];
});
const acModuleImports: Plugin = {
name: "replace-ac-module-imports",
setup(build) {
build.onResolve({ filter: /^@apollo\/client/ }, async (args) => {
if (build.initialOptions.define["TSUP_FORMAT"] === '"cjs"') {
// remove trailing `/index.js` in CommonJS builds
return { path: args.path.replace(/\/index.js$/, ""), external: true };
}
return { path: args.path, external: true };
});
},
};