Skip to content

Commit

Permalink
fix(swagger-ui-react): avoid babel output in build fragments (#9194)
Browse files Browse the repository at this point in the history
Problem was resolved by turning babel debug off.

Refs #9192
  • Loading branch information
char0n authored Sep 6, 2023
1 parent 33608f3 commit 5dbfc1b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5dbfc1b

Please sign in to comment.