My motive is to create a UI library of my own using Angular 9. I was going through the Angular official documentation about Creating Libraries. They started with this command:
ng new my-workspace --create-application=false
And they say that --create-application=false will instruct the CLI to create the config file only and not the application code. Out of curiosity I created 2 projects one with this parameter and other one I generated normally with ng new my-project just to see what is the difference between project structure. I'm confused to see both are same.
Left one is without parameter while Right one is with parameter:

Please correct my mistake.
My versions are:
Angular CLI: 6.2.9
Node: 10.19.0
OS: linux x64
Here is a recording of my steps: https://youtu.be/wsedP3DAsl4

ng new --create-application=falseand again I can see all the files includingapp componentand other application code. I'm adding my versions in the question.--create-applicationis not a valid option for that version of the CLI. Think about upgrading to the latest version. You could have found this out yourself by runningng new --helpand see that option is not listed.