-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc
19 lines (19 loc) · 888 Bytes
/
.babelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"presets": [
[ "@babel/preset-env",
{
"modules": "auto",
"useBuiltIns": false
}
],
["@babel/preset-react"]
],
"plugins": [
[ "babel-plugin-import", { "libraryName": "lodash", "libraryDirectory": "", "camel2DashComponentName": false }, "lodash" ],
[ "babel-plugin-import", { "libraryName": "@mui/lab", "libraryDirectory": "", "camel2DashComponentName": false }, "mui-lab" ],
[ "babel-plugin-import", { "libraryName": "@mui/material", "libraryDirectory": "", "camel2DashComponentName": false }, "mui-core" ],
[ "babel-plugin-import", { "libraryName": "@mui/icons-material", "libraryDirectory": "", "camel2DashComponentName": false }, "mui-icons" ],
[ "babel-plugin-import", { "libraryName": "@mui/system", "libraryDirectory": "", "camel2DashComponentName": false }, "mui-system" ]
],
"ignore": ["node_modules/**/*"]
}