forked from daihy8759/ieaseMusic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.babelrc
27 lines (27 loc) · 760 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
{
"presets": ["@babel/preset-react", "@babel/typescript"],
"plugins": [
[
"babel-plugin-import",
{
"libraryName": "@material-ui/core",
"libraryDirectory": "esm",
"camel2DashComponentName": false
},
"core"
],
[
"babel-plugin-import",
{
"libraryName": "@material-ui/icons",
"libraryDirectory": "esm",
"camel2DashComponentName": false
},
"icons"
],
["@babel/plugin-proposal-class-properties", { "loose": true }],
"@babel/plugin-syntax-dynamic-import",
"react-hot-loader/babel"
],
"comments": true
}