Having difficulty importing AppModule into my project and specifying its location.
Currently using Visual Studio Code for development.
The app.module is situated in project\ClientApp\app, as indicated in this image:
https://i.sstatic.net/2jR3X.png
Despite this, encountering an issue where the module cannot be located:
https://i.sstatic.net/6hI4G.png
Attempted the following import statement:
import { AppModule } from './app/app.module';
However, the error persists.
Possibly using incorrect syntax to locate the file. How should I properly structure the import statement?