-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbabel.config.js
49 lines (49 loc) · 1002 Bytes
/
babel.config.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
/* eslint-disable import/no-commonjs */
module.exports = api => {
const isTest = api.env('test');
if (isTest) {
// For Jest testing environment
return {
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current',
},
},
],
],
};
} else {
// For WebPack targeting UMD and others
return {
presets: [
[
'@babel/preset-env',
{
targets: {
browsers: ['last 2 versions'],
},
modules: 'umd',
useBuiltIns: 'usage',
corejs: 3,
},
],
],
plugins: [
[
'@babel/plugin-transform-runtime',
{
absoluteRuntime: true,
corejs: 3,
helpers: true,
regenerator: true,
useESModules: false,
},
],
],
};
}
};
/* eslint-enable import/no-commonjs */