-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.mjs
48 lines (46 loc) · 1.15 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
46
47
48
import typescript from "@rollup/plugin-typescript";
import { getBabelOutputPlugin } from "@rollup/plugin-babel";
import terser from "@rollup/plugin-terser";
import banner from "rollup-plugin-banner2";
import pkg from "./package.json" with { type: "json" };
const keys = (p) => Object.keys(p || {});
export default {
input: "src/index.ts",
output: [
{
file: pkg.main,
format: "cjs",
sourcemap: true,
},
{
file: pkg.module,
format: "es",
sourcemap: true,
},
],
external: (id) =>
[...keys(pkg.dependencies), ...keys(pkg.devDependencies)].some((d) =>
id.startsWith(d)
),
plugins: [
typescript({
tsconfig: "./tsconfig.json",
outDir: ".",
declaration: true,
exclude: ["src/**/*.spec.*"],
}),
getBabelOutputPlugin({
plugins: ["@babel/plugin-transform-react-pure-annotations"],
}),
terser({
ecma: 2015,
module: true,
compress: { passes: 5, unsafe: true, keep_fargs: false },
mangle: { properties: { regex: "^_" } },
format: {
preserve_annotations: true,
},
}),
banner(() => '"use client";\n'),
],
};