I started a react project using create-react-app few months ago and I\'m interesting in migrating the project from Javascript to Typescript.
I saw that there is a wa
1). run
npm install --save typescript @types/node @types/react @types/react-dom @types/jest
or
yarn add typescript @types/node @types/react @types/react-dom @types/jest
2). Rename any file to be a TypeScript file (e.g. src/index.js to src/index.tsx)
3). run npm i @types/react-dom @types/react-redux @types/react-router-dom
4). Restart your development server!
enjoy :)