Recently, I made sure to update my project to the latest Angular version. After running "ng update
", I received a confirmation that everything was already up to date, indicating that all required packages had been successfully updated in the last step of the process.
However, when I attempted to serve the project, an unexpected error occurred:
Error: The Angular Compiler is requesting TypeScript version >=4.2.3 and <4.3.0, but it detected version 4.3.2 instead.
I have already attempted to resolve this by running
npm install <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="52262b22372131203b222612667c617c62">[email protected]</a>
, only to find out that such a version does not exist. Downgrading is not preferred as I aim to keep my projects current.
How can I tackle this issue?