forked from bvaughn/react-virtualized
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.babelrc.js
55 lines (49 loc) · 1.21 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const env = process.env.NODE_ENV;
if (env === 'commonjs' || env === 'es') {
module.exports = {
ignore: [
'*.jest.js',
'*.e2e.js',
'*.ssr.js',
'*.example.js',
'source/demo',
'source/jest-*.js',
'source/TestUtils.js',
],
plugins: [
'transform-runtime',
['flow-react-proptypes', {deadCode: true, useESModules: true}],
['transform-react-remove-prop-types', {mode: 'wrap'}],
],
presets: [['env', {modules: false}], 'react', 'flow', 'stage-2'],
};
if (env === 'commonjs') {
module.exports.plugins.push('transform-es2015-modules-commonjs');
}
}
if (env === 'rollup') {
module.exports = {
comments: false,
plugins: ['external-helpers'],
presets: [['env', {modules: false}], 'react', 'flow', 'stage-2'],
};
}
if (env === 'development') {
module.exports = {
presets: ['react', 'flow', 'stage-2'],
};
}
if (env === 'production') {
module.exports = {
comments: false,
plugins: ['transform-runtime'],
presets: ['env', 'react', 'flow', 'stage-2'],
};
}
if (env === 'test') {
module.exports = {
comments: false,
plugins: ['transform-es2015-modules-commonjs'],
presets: ['react', 'flow', 'stage-2'],
};
}