forked from inokawa/remark-slate-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.mjs
45 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
45
import typescript from "@rollup/plugin-typescript";
import terser from "@rollup/plugin-terser";
import pkg from "./package.json" assert { type: "json" };
const externals = [
...Object.keys(pkg.dependencies),
...Object.keys(pkg.devDependencies),
];
export default {
input: "src/index.ts",
output: [
{
file: pkg.main,
format: "cjs",
sourcemap: true,
},
{
file: pkg.module,
format: "es",
sourcemap: true,
},
],
external: (id) => externals.some((d) => id.startsWith(d)),
plugins: [
typescript({
tsconfig: "./tsconfig.json",
outDir: ".",
declaration: true,
exclude: ["**/*.{spec,stories}.*"],
}),
terser({
ecma: 2015,
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,
},
}),
],
};