Created
August 22, 2020 19:35
-
-
Save rohanBagchi/115d0ee93f44f261210b9340520fd969 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"presets": [ | |
[ | |
"@babel/preset-env", | |
{ | |
"useBuiltIns": "usage", | |
"corejs": 2 | |
} | |
], | |
"@babel/preset-react" | |
], | |
"plugins": [ | |
"@babel/plugin-proposal-class-properties", | |
"@babel/plugin-proposal-optional-chaining", | |
[ | |
"import", | |
{ | |
"libraryName": "antd", | |
"libraryDirectory": "es", | |
"style": true | |
} | |
], | |
[ | |
"import", | |
{ | |
"libraryName": "@ant-design/icons", | |
"libraryDirectory": "es/icons", | |
"camel2DashComponentName": false | |
}, | |
"import-antd-icons" | |
] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment