-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbabel.config.js
More file actions
40 lines (32 loc) · 899 Bytes
/
babel.config.js
File metadata and controls
40 lines (32 loc) · 899 Bytes
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
module.exports = ({cache, env}) => {
cache.using(() => process.env.NODE_ENV);
const res = {
presets: [
[
"@babel/preset-env",
{
modules: false,
useBuiltIns: "usage",
corejs: {
version: '3.3',
proposals: true
}
}
],
"@babel/preset-react"
],
plugins: [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
["@babel/plugin-proposal-decorators", {legacy: true}],
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions",
["@babel/plugin-transform-runtime", {useESModules: true}],
"react-hot-loader/babel"
]
};
if (!env("production"))
res.plugins.push('@babel/plugin-transform-react-jsx-source');
return res;
};