An open API service indexing awesome lists of open source software.

https://github.com/nirajkashyap/cra-template-redux-rxjs-typescript

The base template for Create React App with Redux, Rxjs and redux-observable
https://github.com/nirajkashyap/cra-template-redux-rxjs-typescript

Last synced: 3 months ago
JSON representation

The base template for Create React App with Redux, Rxjs and redux-observable

Awesome Lists containing this project

README

          

# cra-template-redux-rxjs-typescript

This is the official base template for [Create React App with Redux Rxjs Typescript](https://github.com/Nirajkashyap/cra-template-redux-rxjs-typescript).

## TypeScript

```sh
npx create-react-app my-app --template redux-rxjs-typescript
```

hint : to resolve ts error update below rules in tsconfig.json

"noImplicitReturns": true,

"noImplicitThis": true,

"noImplicitAny": false,

"strictNullChecks": true,

"suppressImplicitAnyIndexErrors": true,

"noUnusedLocals": true,