-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy path.babelrc
executable file
·39 lines (39 loc) · 899 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
{
"presets": ["@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript"],
"plugins": [
"react-hot-loader/babel",
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread",
"@babel/plugin-transform-runtime",
[
"module-resolver",
{
"root": ["./src"],
"alias": {
"@ui": "./src/ui",
"@utils": "./src/utils",
"@core/reducers": "./src/reducers",
"@core/theme": "./src/theme"
}
}
],
[
"babel-plugin-import",
{
"libraryName": "@material-ui/core",
"libraryDirectory": "",
"camel2DashComponentName": false
},
"core"
],
[
"babel-plugin-import",
{
"libraryName": "@material-ui/icons",
"libraryDirectory": "",
"camel2DashComponentName": false
},
"icons"
]
]
}