Create empty workspace in Angular
We can create a new app using the ng new <name> Angular CLI command. It creates workspace with an initial Angular app with the name <name> in the src folder.
Option --create-application="false" was introduced in version 7 will stops creating default or initial application folders and files.
It only creates the workspace.
ng new <workspace> --create-application="false"
The above command creates folder with the name <workspace> and configures the workspace.
It does not create any apps.