fix(swagger-ui-react): avoid babel output in build fragments (#9194)

Problem was resolved by turning babel debug off.

Refs #9192
This commit is contained in:
Vladimír Gorej
2023-09-06 07:36:36 +02:00
committed by GitHub
parent 33608f3253
commit 5dbfc1b416

View File

@@ -15,13 +15,23 @@ module.exports = {
],
"@babel/preset-react",
],
"plugins": [
[
"transform-react-remove-prop-types",
{
"additionalLibraries": [
"react-immutable-proptypes"
]
}
],
],
},
"esm": {
"presets": [
[
"@babel/env",
{
"debug": true,
"debug": false,
"modules": false,
"ignoreBrowserslistConfig": false,
"useBuiltIns": false,