typescript - Angular app.module.ts not compiling, NgModule not declared, and component import issues - Stack Overflow

admin2025-04-24  4

I created a basic Angular project in VS Code, but the app.module.ts file was missing, so I manually created it and added @NgModule. I then generated a new component named user and imported this user component in app.module.ts, but I got an error.

However, when I imported the user component in appponent.ts, it worked. It seems like app.module.ts is not being compiled properly. Additionally, I am getting an error saying NgModule is not declared. How can I resolve this issue?

Errors:

X [ERROR] NG8001: 'app-use' is not a known element:

  1. If 'app-use' is an Angular component, then verify that it is included in the '@Component.imports' of this component.
  2. If 'app-use' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@Component.schemas' of this component to suppress this message. [plugin angular-compiler]

X [ERROR] NG8003: No directive found with exportAs 'ngForm'. [plugin angular-compiler]

I expected the app.module.ts file to compile correctly and recognize @NgModule and other Angular decorators.

I expected the user component to be successfully declared in app.module.ts without any issues.

转载请注明原文地址:http://anycun.com/QandA/1745462790a90777.html