-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrollup.config.mjs
65 lines (63 loc) · 1.33 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import fs from "node:fs";
import path from "node:path";
import url from "node:url";
import typescript from "rollup-plugin-typescript2";
import dts from "rollup-plugin-dts";
const __filename = url.fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const LICENSE = fs.readFileSync("LICENSE", { encoding: "utf-8" });
const pkg = JSON.parse(fs.readFileSync("package.json", { encoding: "utf-8" }));
const banner = [
"/*!",
...LICENSE.split("\n").map(o => ` * ${o}`),
" */",
"",
].join("\n");
const input = "src/index.ts";
const external = Object.keys(pkg.dependencies || {});
export default [
{
input,
plugins: [
typescript({
check: true,
clean: true,
tsconfigOverride: {
compilerOptions: {
module: "ES2015",
removeComments: true,
},
exclude: ["test/**/*.ts"],
}
}),
],
external: [...external],
output: [
{
banner,
file: pkg.main,
format: "cjs",
},
{
banner,
file: pkg.module,
format: "es",
},
],
},
{
input,
external: [...external],
plugins: [
dts({
tsconfig: path.resolve(__dirname, "./tsconfig.json")
})
],
output: [
{
banner,
file: pkg.types,
}
]
},
];