forked from expo/snack-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
babel.config.js
47 lines (46 loc) · 1.15 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
module.exports = api => {
const isWebpack = api.caller(caller => Boolean(caller && caller.name === 'babel-loader'));
return {
presets: [
[
'@babel/preset-env',
isWebpack
? {
targets: {
browsers: [
'>0.25%',
'not dead',
'not ie 11',
'not op_mini all',
'not android <= 4.4',
'not samsung <= 4',
],
},
exclude: ["transform-typeof-symbol"],
useBuiltIns: 'usage',
modules: false,
}
: {
targets: {
node: '8.14',
},
},
],
'@babel/preset-react',
'@babel/preset-typescript',
],
plugins: [
'@babel/plugin-syntax-dynamic-import',
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-object-rest-spread',
'lodash',
isWebpack ? 'webpack-chunkname' : 'dynamic-import-node',
],
overrides: [
{
test: './src/client/vendor',
compact: true,
},
],
};
};