Angular CLI version = 17.3.4
npm run start
npm run start:staging
npm run build --omit=dev
From angular 17 on the default is standalone so the app.module is not generated when creating a new Angular app. In order to have it created --no--standalone must be specified: Source: https://www.youtube.com/watch?v=Lkz3rYqck08 Command:
ng new angular-tutorial --no-standalone