forked from JoinColony/purser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbabel.config.js
64 lines (63 loc) · 1.23 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* @NOTE On using of project-wide `babel.config.js`
* This file was renamed from `.babelrc` to `babel.config.js` because of an edge case in the new 7.x
* Babel that would prevent configs from being applied.
*
* See: https://babeljs.io/docs/en/config-files#6x-vs-7x-babelrc-loading
*/
const babelConfig = {
plugins: [
'@babel/plugin-transform-runtime',
[
'transform-inline-environment-variables',
{
include: ['NODE_ENV'],
},
],
],
presets: [
'@babel/preset-env',
'@babel/preset-flow',
],
env: {
es: {
plugins: [
[
'@babel/plugin-transform-runtime',
{
useESModules: true,
},
]
],
presets: [
[
'@babel/preset-env',
{
modules: false,
},
],
'@babel/preset-flow',
],
},
cjs: {
presets: [
'@babel/preset-env',
'@babel/preset-flow',
],
},
test: {
presets: [
'@babel/preset-env',
'@babel/preset-flow',
],
plugins: [
'babel-plugin-dynamic-import-node',
],
ignore: null,
}
}
};
module.exports = babel => {
babel.cache.never();
return babelConfig;
};