-
Notifications
You must be signed in to change notification settings - Fork 339
/
.babelrc.js
36 lines (34 loc) · 1.02 KB
/
.babelrc.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
const stage0Plugins = ['@babel/plugin-proposal-function-bind']
const stage1Plugins = [
'@babel/plugin-proposal-export-default-from',
'@babel/plugin-proposal-logical-assignment-operators',
['@babel/plugin-proposal-optional-chaining', { loose: false }],
['@babel/plugin-proposal-pipeline-operator', { proposal: 'minimal' }],
['@babel/plugin-proposal-nullish-coalescing-operator', { loose: false }],
'@babel/plugin-proposal-do-expressions',
[
'babel-plugin-styled-components',
{
fileName: false,
},
],
]
module.exports = {
presets: [
[
'@babel/preset-env',
{
corejs: 3,
useBuiltIns: 'entry',
targets: {
browsers: [
'last 10 Firefox versions',
'last 10 Chrome versions',
],
},
},
],
'@babel/preset-react',
],
plugins: [...stage0Plugins, ...stage1Plugins],
}