Skip to content

Instantly share code, notes, and snippets.

@nnance
Created April 12, 2020 13:06
Show Gist options
  • Save nnance/43a4c529877efaf54e68f0ecabb0013c to your computer and use it in GitHub Desktop.
Save nnance/43a4c529877efaf54e68f0ecabb0013c to your computer and use it in GitHub Desktop.
React TypeScript prototype template
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