-
Fixes resolution order for modules with
.jsxin 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.jsand then./Button.jsx. -
Upgrades dependencies (
jest-resolveis only used in type declarations) and devDependencies.