-
Fixes resolution order for modules with
.jsx
in the path so they import in the correct order like TS does.Ex.
import Button from "./Button.jsx"
tries
./Button.ts
, then./Button.tsx
, then./Button.js
and then./Button.jsx
. -
Upgrades dependencies (
jest-resolve
is only used in type declarations) and devDependencies.