-
Notifications
You must be signed in to change notification settings - Fork 2
/
babel.config.js
49 lines (48 loc) · 969 Bytes
/
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
const common = {
presets: [
[
'@babel/env',
{
loose: true,
useBuiltIns: 'entry',
corejs: 3,
modules: false,
shippedProposals: true,
targets: {
node: '10',
browsers: [
'last 2 Chrome versions',
'last 2 Firefox versions',
'last 2 Safari versions',
'last 1 Edge versions',
],
},
},
],
'@babel/preset-react',
'@babel/typescript',
],
overrides: [
{
test(filename) {
return (
filename && (filename.endsWith('.tsx') || filename.endsWith('.ts'))
)
},
presets: [
[
'@babel/preset-typescript',
{
isTSX: true,
allExtensions: true,
},
],
],
},
],
sourceMaps: true,
}
module.exports = (api) => {
if (api && api.cache && api.cache.never) api.cache.never()
return common
}