Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 530 Bytes

File metadata and controls

18 lines (13 loc) · 530 Bytes

cra-template-redux-rxjs-typescript

This is the official base template for Create React App with Redux Rxjs Typescript.

TypeScript

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,