You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
851 B
38 lines
851 B
{
|
|
"presets": [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
"useBuiltIns": "usage",
|
|
"corejs": 2,
|
|
"target": {
|
|
"edge": 70,
|
|
"chrome": 67
|
|
}
|
|
}
|
|
],
|
|
"@babel/preset-react"
|
|
],
|
|
"plugins": [
|
|
"@babel/plugin-proposal-object-rest-spread",
|
|
"@babel/plugin-transform-runtime",
|
|
[
|
|
"@babel/plugin-proposal-class-properties",
|
|
{
|
|
"loose": false
|
|
}
|
|
],
|
|
[
|
|
"@babel/plugin-proposal-private-property-in-object",
|
|
{
|
|
"loose": false
|
|
}
|
|
],
|
|
[
|
|
"@babel/plugin-proposal-private-methods",
|
|
{
|
|
"loose": false
|
|
}
|
|
]
|
|
]
|
|
}
|