soiz1 commited on
Commit
bc43d5e
·
verified ·
1 Parent(s): 5beb663

Update .babelrc

Browse files
Files changed (1) hide show
  1. .babelrc +22 -12
.babelrc CHANGED
@@ -1,12 +1,22 @@
1
- {
2
- "plugins": [
3
- "@babel/plugin-syntax-dynamic-import",
4
- "@babel/plugin-proposal-object-rest-spread",
5
- ["react-intl", {
6
- "messagesDir": "./translations/messages/"
7
- }]],
8
- "presets": [
9
- ["@babel/preset-env"],
10
- "@babel/preset-react"
11
- ]
12
- }
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "plugins": [
3
+ "@babel/plugin-syntax-dynamic-import",
4
+ "@babel/plugin-proposal-object-rest-spread",
5
+ [
6
+ "react-intl",
7
+ {
8
+ "messagesDir": "./translations/messages/"
9
+ }
10
+ ]
11
+ ],
12
+ "presets": [
13
+ [
14
+ "@babel/preset-env",
15
+ {
16
+ "useBuiltIns": "usage",
17
+ "corejs": 3
18
+ }
19
+ ],
20
+ "@babel/preset-react"
21
+ ]
22
+ }