forked from pinterest/querybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
babel.config.js
69 lines (68 loc) · 2.07 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
65
66
67
68
69
module.exports = (api) => {
const isDev = api.env('development');
const isTest = api.env('test');
return {
presets: [
[
'@babel/preset-react',
{
// uncomment to use why-did-you-render
// runtime: 'automatic',
// development: isDev,
// importSource: '@welldone-software/why-did-you-render',
},
],
[
'@babel/preset-typescript',
{
isTSX: true,
allExtensions: true,
},
],
[
'@babel/preset-env',
{
// modules: false,
targets: {
node: 'current',
},
},
],
],
plugins: [
[
'@babel/plugin-proposal-decorators',
{
legacy: true,
},
],
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-nullish-coalescing-operator',
'@babel/plugin-proposal-optional-chaining',
[
'babel-plugin-transform-imports',
{
lodash: {
transform: 'lodash/${member}',
preventFullImport: true,
},
'react-virtualized': {
transform: 'react-virtualized/dist/es/${member}',
preventFullImport: true,
},
},
],
[
'babel-plugin-styled-components',
{
pure: true,
// dev: for html className
// test: for snapshot
displayName: isDev || isTest,
},
],
isDev && require.resolve('react-refresh/babel'),
].filter(Boolean),
sourceMaps: true,
};
};