-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
59 lines (54 loc) · 1.57 KB
/
rollup.config.js
File metadata and controls
59 lines (54 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
const typescript = require("@rollup/plugin-typescript");
const resolve = require("@rollup/plugin-node-resolve");
const commonjs = require("@rollup/plugin-commonjs");
const pkg = require("./package.json");
// Check if it is in development mode (determined by the command line parameter -w)
const isDevelopment = process.argv.includes("-w");
// Automatically read dependencies from package.json
const external = [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
// ...Object.keys(pkg.devDependencies || {}),
];
// Shared plugins
const plugins = [
typescript({
tsconfig: "./tsconfig.json",
declaration: true,
declarationMap: isDevelopment, // Only generate source map in development mode (rollup -w)
declarationDir: "./dist",
}),
resolve({
browser: true,
preferBuiltins: true,
}),
commonjs(),
];
// Shared output configuration
const commonOutputConfig = {
sourcemap: isDevelopment, // Only generate source map in development mode (rollup -w)
};
module.exports = [
// CommonJs build (Node.js)
{
input: "src/index.ts",
output: {
file: pkg.main || "dist/index.js",
format: "cjs",
...commonOutputConfig,
},
plugins,
external,
},
// ES Module build (Node.js, modern browsers)
{
input: "src/index.ts",
output: {
file: pkg.module || "dist/index.esm.js",
format: "es",
...commonOutputConfig,
},
plugins,
external,
},
];