Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ it according to semantic versioning. For example, if your PR adds a breaking cha
should change the heading of the (upcoming) version to include a major version bump.

-->
# 5.24.6

## @rjsf/core

- Fixed `src/tsconfig.json` to add the `tsc-alias` block to support proper fixing up of ESM import

# 5.24.5

## @rjsf/utils
Expand Down
12 changes: 11 additions & 1 deletion packages/core/src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,15 @@
{
"path": "../../validator-ajv8"
}
]
],
"tsc-alias": {
"resolveFullPaths": true,
"verbose": true,
"replacers": {
"lodash": {
"enabled": true,
"file": "lodashReplacer.js"
}
}
}
}