A starter kit for developers to use react + redux + typescript stack easily. This repos also provides an tiny example of how to write business with redux and typescript.
Enjoy it!
First step, you should install typescript, typings and webpack.
npm install typescript typings webpack -gThen clone the repo down (from this repo or somewhere you folked).
git clone https://github.com/techird/react-redux-typescript-start.gitRun npm init command to install all dependencies.
npm run initRun npm dev command to start development. React hot module replacement is enabled!
npm run devAnd now you can visit http://localhost:8081.
Run npm build command to build final production files.
npm run build