Install new create react app :
npx create-react-app my-app --template typescript
Install typescript in existing create react app :
npm install --save typescript @types/node @types/react @types/react-dom @types/jest
TypeScript - takes care of all our syntax, thus help in less error and high scaling
0 Comments