https://github.com/Microsoft/TypeScript/issues/4948#issuecomment-279109510 (Sounds like issue with isomorphic-fetch also)
The entry
"@types/whatwg-fetch": "0.0.28",
Needs to be removed from in fex. ReactReduxSpa/package.json
But then domain-task doesn't like it as its a dependency 馃槥
Or maybe temporally change typescript from major version "typescript": "^2.0.3", to minor version "typescript": "~2.0.3",?
Thanks for reporting this!
To fix this, I've updated the templates' TS dependencies to 2.2.1+. This meant that the @types/whatwg-fetch package references could be removed, since fetch is now included in the TS standard lib.
The updated templates will be published as version 0.8.6 shortly.
Had similar story here https://github.com/angular/angular-cli/issues/5692 but figureout the solution by looking here https://github.com/Microsoft/TypeScript/issues/4948
Most helpful comment
Thanks for reporting this!
To fix this, I've updated the templates' TS dependencies to 2.2.1+. This meant that the
@types/whatwg-fetchpackage references could be removed, sincefetchis now included in the TS standard lib.The updated templates will be published as version 0.8.6 shortly.