Currently, I am in the process of upgrading an existing Angular project from version 11 to version 16. The update went smoothly until I encountered a roadblock upon reaching version 16.
The main issue I am facing is that most of my modules are displaying the following error message:
"This import contains errors, which may affect components that depend on this NgModule."
Running on node version 16.16.0
Here is a snippet of my package.json file:
{
"name": "fuse",
"version": "11.0.0",
"license": "https://themeforest.net/licenses/terms/regular",
"scripts": {
...
},
"private": true,
"dependencies": {
...
},
"devDependencies": {
...
}
}
I am seeking assistance to understand why this error is occurring. Any insights or guidance on this matter would be greatly appreciated.