authentik/web/.babelrc

27 lines
511 B
Plaintext
Raw Normal View History

{
"presets": [
"@babel/env",
"@babel/typescript"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"decoratorsBeforeExport": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
}