I am currently in the process of updating my Aurelia project from a beta version to the March version.
One of the issues I encountered is:
Cannot locate name 'Request'.
Searching online led me to this problem on GitHub: https://github.com/aurelia/fetch-client/issues/65
This particular issue suggests that the solution is to install the TypeScript definitions for whatwg-fetch
. After installing those definitions, the error disappears.
However, does this mean I also require whatwg-fetch
? (Checking my node_modules directory, whatwg-fetch
is not present.)