-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbabel.config.js
More file actions
31 lines (28 loc) · 742 Bytes
/
babel.config.js
File metadata and controls
31 lines (28 loc) · 742 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
const browserlist = require('./browserslist.config')
module.exports = (api) => {
const validEnv = ['development', 'test', 'production']
const currentEnv = api.env()
const isTestEnv = api.env('test')
if (!validEnv.includes(currentEnv)) {
throw new Error(
'Please specify a valid `NODE_ENV` or ' +
'`BABEL_ENV` environment variables. Valid values are "development", ' +
'"test", and "production". Instead, received: ' +
JSON.stringify(currentEnv) +
'.'
)
}
return {
presets: [
[
'@babel/preset-env',
{
targets: browserlist,
modules: isTestEnv ? 'auto' : false,
useBuiltIns: false
}
]
],
plugins: []
}
}