Created
April 12, 2020 13:06
-
-
Save nnance/43a4c529877efaf54e68f0ecabb0013c to your computer and use it in GitHub Desktop.
React TypeScript prototype template
This file contains 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
git init && npm init -y | |
npm i -D @types/react @types/react-dom live-server typescript | |
tsc --init --module system --moduleResolution node --jsx react --sourceMap --esModuleInterop --target es5 --lib es6,dom --outFile ./dist/index.js | |
curl https://raw.githubusercontent.com/nnance/react-ts-basic-starter/master/.gitignore > .gitignore | |
curl https://raw.githubusercontent.com/nnance/react-ts-basic-starter/master/index.html > index.html | |
curl https://raw.githubusercontent.com/nnance/react-ts-basic-starter/master/index.tsx > index.tsx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment