-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babel.react.js
66 lines (66 loc) · 2.07 KB
/
.babel.react.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
65
66
module.exports = ({ path }) => ({
presets: [
[
"@babel/preset-env",
{
targets: {
browsers: ["last 2 versions", "safari >= 7"]
},
// Allow importing core-js in entrypoint and use browserlist to select polyfills
useBuiltIns: "entry",
// Set the corejs version we are using to avoid warnings in console
// This will need to change once we upgrade to corejs@3
corejs: 3,
// Do not transform modules to CJS
modules: false,
// Exclude transforms that make all code slower
exclude: ["transform-typeof-symbol"]
}
],
["@babel/preset-react", { useBuiltIns: true }],
["@babel/preset-typescript", { isTSX: true, allExtensions: true }]
],
plugins: [
"babel-plugin-macros",
"babel-plugin-lodash",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-throw-expressions",
[
"@babel/plugin-transform-runtime",
{
corejs: false,
version: require("@babel/runtime/package.json").version,
regenerator: true,
useESModules: false
}
],
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator",
["babel-plugin-emotion", { autoLabel: true }],
[
"@babel/plugin-proposal-object-rest-spread",
{
useBuiltIns: true
}
],
[
"babel-plugin-named-asset-import",
{
loaderMap: {
svg: {
ReactComponent: "@svgr/webpack![path]"
}
}
}
],
[
"babel-plugin-module-resolver",
{
cwd: path,
alias: {
"~": "./src"
}
}
]
]
});