2020-09-07 03:41:46 +00:00
|
|
|
{
|
|
|
|
"compact": false,
|
|
|
|
"presets": [
|
|
|
|
[
|
|
|
|
"@babel/preset-env",
|
|
|
|
{
|
|
|
|
"loose": true,
|
|
|
|
"targets": {
|
|
|
|
"browsers": ["ie >= 11", "safari > 10"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
2023-05-23 22:55:36 +00:00
|
|
|
["@babel/typescript", { "isTSX": true, "allExtensions": true }]
|
2020-09-07 03:41:46 +00:00
|
|
|
],
|
|
|
|
"plugins": [
|
2024-04-11 17:18:07 +00:00
|
|
|
["@babel/plugin-proposal-decorators", { "version": "legacy" }],
|
|
|
|
[
|
|
|
|
"@babel/plugin-transform-runtime",
|
|
|
|
// version defaults to 7.0.0 for which non-legacy decorators produce duplicate code
|
|
|
|
{ "version": "^7.24.3" }
|
|
|
|
],
|
2023-05-23 22:55:36 +00:00
|
|
|
["babel-plugin-inferno", { "imports": true }],
|
2024-01-29 03:09:08 +00:00
|
|
|
["@babel/plugin-transform-class-properties", { "loose": true }]
|
2020-09-07 03:41:46 +00:00
|
|
|
]
|
|
|
|
}
|