-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
44 lines (43 loc) · 1.07 KB
/
rollup.config.mjs
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
import typescript from "@rollup/plugin-typescript";
import terser from "@rollup/plugin-terser";
import pkg from "./package.json" with { type: "json" };
export default {
input: "src/index.ts",
output: [
{
file: pkg.main,
format: "cjs",
sourcemap: true,
},
{
file: pkg.module,
format: "es",
sourcemap: true,
},
],
plugins: [
typescript({
tsconfig: "./tsconfig.json",
outDir: ".",
declaration: true,
exclude: ["**/*.{spec,stories}.*"],
}),
terser({
ecma: 2018,
module: true,
compress: { passes: 5, unsafe: true, keep_fargs: false },
mangle: { properties: { regex: "^_" } },
format: {
// https://github.com/terser/terser/pull/550
// https://github.com/terser/terser/issues/968
comments: /@preserve|@lic|@cc_on|^\**!|__PURE__/i,
preserve_annotations: true,
},
}),
],
external: (id) =>
[
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.devDependencies || {}),
].some((d) => id.startsWith(d)),
};