Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 835 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 835 Bytes

render-jsx TS starter project

  1. use this template
  2. clone your repo and cd to it
  3. npm i
  4. npm start for development
  • entry file is in src/index.tsx
  • dev version is served on localhost:3000 by default
  1. npm run build for building your web app / bundle and ship it
  • built files are in dist/

👉 Don't forget to checkout the docs.


Stack

  • TypeScript is used for transpilation.
    • can be configured in tsconfig.json
  • webpack is used for building & dev.
    • configuration in webpack.common.js
    • dev specific config in webpack.dev.js
    • prod specific config in webpack.prod.js