-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.babelrc.js
37 lines (33 loc) · 887 Bytes
/
.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
37
const { argv } = require('yargs')
const getArgs = (key) => {
const arg = argv[key]
if (!arg) return []
return typeof arg === 'string' ? [arg] : arg
}
const env = getArgs('env')
const isDev = env.includes('mode=development')
const babelConfig = {
presets: [
// [
// '@babel/preset-env',
// {
// targets: {
// browsers: ['>1%', 'last 4 versions', 'not ie < 9'],
// },
// useBuiltIns: 'usage',
// debug: false,
// corejs: 3,
// },
// ],
'@babel/preset-react',
],
plugins: [
'@babel/plugin-syntax-dynamic-import',
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-export-namespace-from',
'@babel/plugin-proposal-throw-expressions',
'@babel/proposal-object-rest-spread',
isDev && 'react-refresh/babel',
].filter(Boolean),
}
module.exports = babelConfig