-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.babelrc
40 lines (39 loc) · 861 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
34
35
36
37
38
39
40
{
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-flow"
],
"retainLines": true,
"plugins": [
[
"module-resolver",
{
"cwd": "babelrc",
"root": [".src"],
"extensions": [".js", ".scss"]
}
],
[
"babel-plugin-import",
{
"libraryName": "@material-ui/core",
// Use ""libraryDirectory": ""," if your bundler does not support ES modules
"libraryDirectory": "esm",
"camel2DashComponentName": false
},
"core"
],
[
"babel-plugin-import",
{
"libraryName": "@material-ui/icons",
"libraryDirectory": "esm",
"camel2DashComponentName": false
},
"icons"
],
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-class-properties"
]
}