forked from yanyiwu/nodejieba
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.ts
56 lines (55 loc) · 1.03 KB
/
rollup.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
import esbuild from "rollup-plugin-esbuild";
// @ts-ignore
import dts from "rollup-plugin-dts";
export default [
{
input: "./src/index.ts",
output: [
{
file: "./dist/index.cjs",
format: "cjs",
sourcemap: true,
},
{
file: "./dist/index.mjs",
format: "esm",
sourcemap: true,
},
],
plugins: [
esbuild({
charset: "utf8",
minify: true,
target: "node16",
}),
],
external: ["node:module", "node:path", "node:url", "@mapbox/node-pre-gyp"],
},
{
input: "./src/index.ts",
output: [
{
file: "./dist/index.d.ts",
format: "esm",
sourcemap: true,
},
{
file: "./dist/index.d.cts",
format: "esm",
sourcemap: true,
},
{
file: "./dist/index.d.mts",
format: "esm",
sourcemap: true,
},
],
plugins: [
dts({
compilerOptions: {
preserveSymlinks: false,
},
}),
],
},
];