35 lines
601 B
JavaScript
35 lines
601 B
JavaScript
const plugins = [
|
|
[
|
|
'babel-plugin-import',
|
|
{
|
|
'libraryName': '@material-ui/lab',
|
|
'libraryDirectory': 'esm',
|
|
'camel2DashComponentName': false
|
|
},
|
|
'lab'
|
|
],
|
|
[
|
|
'babel-plugin-import',
|
|
{
|
|
'libraryName': '@material-ui/core',
|
|
'libraryDirectory': 'esm',
|
|
'camel2DashComponentName': false
|
|
},
|
|
'core'
|
|
],
|
|
[
|
|
'babel-plugin-import',
|
|
{
|
|
'libraryName': '@material-ui/icons',
|
|
'libraryDirectory': 'esm',
|
|
'camel2DashComponentName': false
|
|
},
|
|
'icons'
|
|
]
|
|
];
|
|
|
|
module.exports = {
|
|
presets: ["react-app"],
|
|
plugins
|
|
};
|