-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.ts
58 lines (53 loc) · 1.12 KB
/
rollup.config.ts
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
import { createRequire } from "node:module";
import { RollupOptions } from "rollup";
import dts from "rollup-plugin-dts";
import esbuild from "rollup-plugin-esbuild";
import license, { Options as LicenseOptions } from "rollup-plugin-license";
const pkg = createRequire(import.meta.url)("./package.json");
function bundle(config: RollupOptions): RollupOptions {
return {
...config,
input: "src/index.ts",
external: (id) => !/^[./]/.test(id),
};
}
const licenseConfig: LicenseOptions = {
sourcemap: true,
banner: {
commentStyle: "ignored",
content: {
file: "./NOTICE",
},
},
thirdParty: {
output: {
file: "dist/dependencies.txt",
},
},
};
export default [
bundle({
plugins: [esbuild(), license(licenseConfig)],
output: [
{
file: pkg.main,
format: "cjs",
sourcemap: true,
exports: "named",
},
{
file: pkg.module,
format: "es",
sourcemap: true,
exports: "named",
},
],
}),
bundle({
plugins: [dts()],
output: {
file: pkg.types,
format: "es",
},
}),
];