33 lines
770 B
Plaintext
33 lines
770 B
Plaintext
{
|
|
"presets": ["@babel/env", "@babel/typescript"],
|
|
"plugins": [
|
|
["@babel/plugin-transform-private-methods", { "loose": true }],
|
|
["babel-plugin-tsconfig-paths", {}],
|
|
[
|
|
"@babel/plugin-proposal-decorators",
|
|
{
|
|
"decoratorsBeforeExport": true
|
|
}
|
|
],
|
|
[
|
|
"@babel/plugin-transform-class-properties",
|
|
{
|
|
"loose": true
|
|
}
|
|
],
|
|
[
|
|
"@babel/plugin-transform-runtime",
|
|
{
|
|
"regenerator": true
|
|
}
|
|
],
|
|
"macros",
|
|
[
|
|
"@babel/plugin-transform-private-property-in-object",
|
|
{
|
|
"loose": true
|
|
}
|
|
]
|
|
]
|
|
}
|