-
Notifications
You must be signed in to change notification settings - Fork 13
/
babel.config.old.js
executable file
·46 lines (40 loc) · 1.06 KB
/
babel.config.old.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
/**
* KP: Keep this till we are sure new babel config works
*/
/* eslint-disable no-param-reassign */
const plugins = [
// ordering important, decorators before class properties
['@babel/plugin-proposal-decorators', { legacy: true }],
['@babel/plugin-proposal-class-properties', { loose: true }],
'@babel/plugin-proposal-object-rest-spread',
'@babel/plugin-transform-runtime',
];
const base = {
presets: [
[
'@babel/preset-env',
{
modules: 'commonjs',
targets: {
browsers: [
'last 2 Chrome versions',
'last 2 Safari versions',
'last 2 Firefox versions',
'last 2 Edge versions',
],
},
},
],
],
plugins,
};
const output = Object.keys(base).reduce((config, key) => {
config[key] = base[key];
if (key === 'plugins') {
config[key] = config[key].concat(['@babel/plugin-syntax-dynamic-import']);
} else if (key === 'presets') {
config[key] = config[key].concat(['@babel/preset-react']);
}
return config;
}, {});
module.exports = output;