This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo "Name your React/Typescript app:" | |
| read REACT-TS-APP-NAME | |
| yarn create react-app $REACT-TS-APP-NAME --template typescript | |
| cd $REACT-TS-APP-NAME | |
| yarn add -D @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint | |
| yarn start |