Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 991 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 991 Bytes

Dog Saga - Redux-Saga Beginner Tutorial

Unfortunately there are no up-to date examples of Typescript with Redux, thus, we have this library.

The projects this was derived from:

Compilation

The compilation of this project uses a few steps:

  1. Transpile .ts and .tsx files into .js and .jsx files respectively into the tsc_dist folder.
  2. Copy the files the tranpiler missed into the tsc_dist folder.
  3. Point your public/index.html to the newly generated tsc_dist/index.js
  4. Use Parcel to bundle your public/index.html which uses the tsc_dist folder into a new directory called dist.

Setup Hot Reloading

First install node modules:
npm i
Then start both the typescript compiler and parcel bundler in watch mode:
npm run start