Migrating create-react-app from javascript to typescript

前端 未结 4 1420
迷失自我
迷失自我 2020-12-12 22:24

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

4条回答
  •  感情败类
    2020-12-12 22:44

    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 :)

提交回复
热议问题