-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrollup.config.js
More file actions
43 lines (42 loc) · 1 KB
/
rollup.config.js
File metadata and controls
43 lines (42 loc) · 1 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
import typescript from "@rollup/plugin-typescript";
import terser from "@rollup/plugin-terser";
import { dirname } from "node:path";
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,
declarationDir: dirname(pkg.types),
exclude: ["**/*.{spec,stories}.*"],
}),
terser({
ecma: 2018,
module: true,
compress: { passes: 5, unsafe: true, keep_fargs: false },
mangle: { properties: { regex: "^_" } },
format: {
beautify: true, // FIXME replace with prettier
},
}),
],
external: (id) =>
[
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.devDependencies || {}),
].some((d) => id.startsWith(d)),
};