30 lines
523 B
Plaintext
30 lines
523 B
Plaintext
{
|
|
"presets": [
|
|
"@babel/preset-react",
|
|
["@babel/env", {
|
|
"targets": {
|
|
"chrome": 87,
|
|
"node": "current"
|
|
}
|
|
}]
|
|
],
|
|
"plugins": [
|
|
["@babel/plugin-proposal-decorators", { "legacy": true }],
|
|
"@babel/plugin-proposal-class-properties",
|
|
"@babel/plugin-syntax-dynamic-import",
|
|
[
|
|
"import",
|
|
{
|
|
"libraryName": "antd",
|
|
"style": false
|
|
}
|
|
],
|
|
[
|
|
"@babel/plugin-transform-runtime",
|
|
{
|
|
"regenerator": false
|
|
}
|
|
]
|
|
]
|
|
}
|