forked from pmndrs/xr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
55 lines (52 loc) · 1.45 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
import path from "path";
import babel from "rollup-plugin-babel";
import resolve from "rollup-plugin-node-resolve";
import json from "rollup-plugin-json";
import { sizeSnapshot } from "rollup-plugin-size-snapshot";
const root = process.platform === "win32" ? path.resolve("/") : "/";
const external = (id) => !id.startsWith(".") && !id.startsWith(root);
const extensions = [".js", ".jsx", ".ts", ".tsx", ".json"];
const getBabelOptions = ({ useESModules }, targets) => ({
babelrc: false,
extensions,
exclude: "**/node_modules/**",
runtimeHelpers: true,
presets: [
["@babel/preset-env", { loose: true, modules: false, targets }],
"@babel/preset-react",
"@babel/preset-typescript",
],
plugins: [
["transform-react-remove-prop-types", { removeImport: true }],
["@babel/transform-runtime", { regenerator: false, useESModules }],
],
});
export default [
{
input: `./src/index.tsx`,
output: { file: `dist/index.js`, format: "esm" },
external,
plugins: [
json(),
babel(
getBabelOptions(
{ useESModules: true },
">1%, not dead, not ie 11, not op_mini all"
)
),
sizeSnapshot(),
resolve({ extensions }),
],
},
{
input: `./src/index.tsx`,
output: { file: `dist/index.cjs.js`, format: "cjs" },
external,
plugins: [
json(),
babel(getBabelOptions({ useESModules: false })),
sizeSnapshot(),
resolve({ extensions }),
],
},
];