I am using the command ng new <project-name> to create a new angular project. When the project is created, though it runs properly, there is no angular module present in the project.
The ng new command is generating a project only with StandAlone components.
I am using angular 17
There is a change in angular 17.
Now, the
ng newcommand creates StandAlone components by default. This is what said by angular website.Proper documentation about the standalone architecture pattern could be found here.