I recently attempted to upgrade my Angular project from version 12 to 13
Following the recommendations provided in this link, which outlines the official Angular update process, I made sure to make all the necessary changes.
List of dependencies for my project:
{
"name": "ngx-admin",
"version": "2.3.0",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/akveo/ngx-admin.git"
},
// As per the document, more details can be added here
}
However, after running npm start, an error has been thrown:
An unhandled exception occurred: Class extends value undefined is not a constructor or null
Despite attempting various solutions found online, none seemed to work for me as they did not address this specific error encountered during the Angular upgrade. Upon careful inspection, all components within the project are functioning correctly.
If anyone could provide assistance with this issue, it would be greatly appreciated.