forked from lumada-design/hv-uikit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbabel.config.cjs
71 lines (63 loc) · 1.6 KB
/
babel.config.cjs
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
65
66
67
68
69
70
71
const productionPlugins = [
"@babel/plugin-transform-react-constant-elements",
[
"babel-plugin-transform-react-remove-prop-types",
{
mode: "unsafe-wrap",
},
],
];
module.exports = (api) => {
const useESModules = api != null && api.env(["legacy", "modern"]);
let moduleFormat = "auto";
if (api != null) {
if (api.env("commonjs")) {
moduleFormat = "commonjs";
} else if (api.env(["legacy", "modern"])) {
moduleFormat = false;
}
}
const presets = [
[
"@babel/preset-env",
{
modules: moduleFormat,
bugfixes: true,
useBuiltIns: "usage",
shippedProposals: api != null && api.env("modern"),
corejs: { version: 3 },
browserslistEnv: api != null && api.env(),
},
],
["@babel/preset-react", { runtime: "automatic" }],
];
const plugins = [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread",
[
"@babel/plugin-transform-runtime",
{
useESModules,
version: "^7.4.4",
},
],
"babel-plugin-optimize-clsx",
];
if (!api.env("modern")) {
plugins.push("@babel/plugin-transform-object-assign");
}
if (process.env.NODE_ENV === "production") {
plugins.push(...productionPlugins);
}
const ignore = [
/@babel[\\|/]runtime/, // Fix a Windows issue.
"*.js.snap",
// **/tests needed for jest, ignored in the packages' builds via command line parameter
// **/stories needed for storybook, ignored in the packages' builds via command line parameter
];
return {
presets,
plugins,
ignore,
};
};