You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The resolved types use export default, but the JavaScript file uses module.exports = .... This will cause TypeScript under the node16 module mode to think an extra .default property access is required, but that will fail at runtime. These types should use export = ... instead of export default.
The resolved types use
export default
, but the JavaScript file usesmodule.exports = ...
. This will cause TypeScript under the node16 module mode to think an extra.default
property access is required, but that will fail at runtime. These types should useexport = ...
instead ofexport default
.See https://arethetypeswrong.github.io/?p=jest-fetch-mock%403.0.3
The text was updated successfully, but these errors were encountered: