forked from n4kz/react-native-material-textfield
-
Notifications
You must be signed in to change notification settings - Fork 31
/
.babelrc
33 lines (33 loc) · 772 Bytes
/
.babelrc
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
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
">1%",
"last 2 chrome versions",
"last 2 edge versions",
"last 2 firefox versions",
"last 2 safari versions",
"not dead",
"not ie <= 11",
"not op_mini all",
"not android <= 4.4",
"not samsung <= 4"
],
"node": "16"
},
"useBuiltIns": false,
"modules": false
}
],
"@babel/preset-react",
"@babel/preset-typescript",
"module:metro-react-native-babel-preset"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-nullish-coalescing-operator"
]
}