-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathrollup.config.js
64 lines (61 loc) · 1.11 KB
/
rollup.config.js
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
import { getBabelOutputPlugin } from "@rollup/plugin-babel";
import typescript from "rollup-plugin-typescript2";
const input = "src/index.ts";
const bundled = "dist/index";
const output = {
cjs: `${bundled}.js`,
esm: `${bundled}.esm.js`,
};
const defaultPlugins = [typescript()];
function generateBabelPluginWithTargets(targets) {
return getBabelOutputPlugin({
presets: [
[
"@babel/preset-env",
{
targets,
useBuiltIns: "usage",
corejs: 3,
},
],
],
});
}
const external = ["axios", "tweetnacl"];
export default [
{
input,
output: [
{
file: output.cjs,
format: "cjs",
},
],
plugins: [
...defaultPlugins,
generateBabelPluginWithTargets({
ie: "11",
}),
],
external,
},
{
input,
output: [
{
file: output.esm,
format: "esm",
},
],
plugins: [
...defaultPlugins,
generateBabelPluginWithTargets({
firefox: "54",
chrome: "51",
safari: "10",
opera: "38",
}),
],
external,
},
];