path:
/rollup.config.js
554 B | plain
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
import pkg from "./package.json";
import {terser} from "rollup-plugin-terser";
import resolve from "rollup-plugin-node-resolve";
export default [
{
input: "src/index.js",
output: [
{
file: pkg.module,
format: "es",
strict: true,
file: "main.js",
},
],
plugins: [
resolve(),
],
},
{
input: "src/index.js",
output: [
{
file: pkg.module,
format: "es",
strict: true,
file: "main.min.js",
},
],
plugins: [
resolve(),
terser({
mangle: {
module: true,
},
}),
],
},
];