-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsdown.config.ts
More file actions
56 lines (55 loc) · 1.22 KB
/
Copy pathtsdown.config.ts
File metadata and controls
56 lines (55 loc) · 1.22 KB
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
import { codecovRollupPlugin } from "@codecov/rollup-plugin";
import { defineConfig } from "tsdown";
export default defineConfig([
{
entry: {
node: "./src/index.ts",
},
outDir: "./dist",
alias: {
nextTick: "./nextTick/node.js",
random: "./random/node.js",
},
target: "node22",
dts: true,
plugins: [
codecovRollupPlugin({
enableBundleAnalysis: Boolean(process.env.BUNDLE_ANALYSIS),
bundleName: "node",
oidc: {
useGitHubOIDC: true,
},
telemetry: false,
}),
],
platform: "node",
fixedExtension: false,
minify: true,
sourcemap: true,
},
{
entry: {
browser: "./src/index.ts",
},
outDir: "./dist",
alias: {
nextTick: "./nextTick/browser.js",
random: "./random/browser.js",
},
target: ["es2020", "edge88", "firefox78", "chrome87", "safari14"],
dts: true,
plugins: [
codecovRollupPlugin({
enableBundleAnalysis: Boolean(process.env.BUNDLE_ANALYSIS),
bundleName: "browser",
oidc: {
useGitHubOIDC: true,
},
telemetry: false,
}),
],
platform: "browser",
minify: true,
sourcemap: true,
},
]);