Recently, I made an update to my Ionic app from Angular 7 to Angular 8, and an odd error popped up:
https://i.sstatic.net/icZOb.png
The issue lies in the fact that I am unable to access any of the standard classes stored in the @angular/core module. This same problem is occurring with other angular modules such as @angular/router
. Here are the dependencies listed in my package.json file:
"dependencies": {
// List of dependencies here...
},
"devDependencies": {
// List of devDependencies here...
}
Do you see anything incorrect in this setup? Any guidance would be greatly appreciated!
edit: I have already run npm install
and now I can actually access the modules, but within them, I notice various subfolders like esm2015, es5, fesm2015, fesm5, schematics... shouldn't these be hidden or not displayed at all?