-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.mjs
37 lines (35 loc) · 917 Bytes
/
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
import typescript from "@rollup/plugin-typescript";
import externals from "rollup-plugin-node-externals";
import dts from "rollup-plugin-dts";
const PACKAGE_ROOT = process.cwd();
/**
* @type {import("rollup").RollupOptions[]}
*/
export default [
{
plugins: [
typescript({
removeComments: false,
sourceMap: true,
tsconfig: `${PACKAGE_ROOT}/tsconfig.json`,
}),
externals({
deps: true,
}),
],
input: `${PACKAGE_ROOT}/src/index.ts`,
output: {
file: `${PACKAGE_ROOT}/dist/index.js`,
format: "cjs",
sourcemap: true,
},
},
{
plugins: [dts()],
input: `${PACKAGE_ROOT}/src/index.ts`,
output: {
file: `${PACKAGE_ROOT}/typings/index.d.ts`,
format: "cjs",
},
},
];