forked from RisingGeek/twitter-clone
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.babelrc
More file actions
26 lines (26 loc) · 724 Bytes
/
Copy path.babelrc
File metadata and controls
26 lines (26 loc) · 724 Bytes
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
{
"presets": [
[
"@babel/preset-env",
{
"modules": false,
"targets": {
"browsers": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 1 Android version",
"last 1 ChromeAndroid version",
"ie 11"
]
}
}
],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
["@babel/transform-runtime"]
]
}