2021-04-03 16:20:17 +00:00
|
|
|
{
|
2021-08-03 15:52:21 +00:00
|
|
|
"presets": ["@babel/env", "@babel/typescript"],
|
2021-04-03 16:20:17 +00:00
|
|
|
"plugins": [
|
2023-09-11 19:58:55 +00:00
|
|
|
["@babel/plugin-transform-private-methods", { "loose": true }],
|
2022-06-25 15:44:17 +00:00
|
|
|
["babel-plugin-tsconfig-paths", {}],
|
2021-04-03 16:20:17 +00:00
|
|
|
[
|
|
|
|
"@babel/plugin-proposal-decorators",
|
|
|
|
{
|
|
|
|
"decoratorsBeforeExport": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[
|
2023-09-11 19:58:55 +00:00
|
|
|
"@babel/plugin-transform-class-properties",
|
2021-04-03 16:20:17 +00:00
|
|
|
{
|
|
|
|
"loose": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"@babel/plugin-transform-runtime",
|
|
|
|
{
|
|
|
|
"regenerator": true
|
|
|
|
}
|
2021-04-03 17:07:11 +00:00
|
|
|
],
|
2021-08-05 10:30:43 +00:00
|
|
|
"macros",
|
|
|
|
[
|
2023-09-11 19:58:55 +00:00
|
|
|
"@babel/plugin-transform-private-property-in-object",
|
2021-08-05 10:30:43 +00:00
|
|
|
{
|
|
|
|
"loose": true
|
|
|
|
}
|
|
|
|
]
|
2021-04-03 16:20:17 +00:00
|
|
|
]
|
|
|
|
}
|