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
- Host: GitHub
- URL: https://github.com/nirajkashyap/cra-template-redux-rxjs-typescript
- Owner: Nirajkashyap
- Created: 2020-11-04T05:34:14.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-04T14:56:41.000Z (about 5 years ago)
- Last Synced: 2025-08-25T01:35:53.902Z (4 months ago)
- Language: TypeScript
- Size: 55.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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,