[ V ] Feature request
Currently both applications and libraries placed in same directory.
And there is only one config for this: newProjectRoot
Please add another one: newLibraryRoot - if set, libraries would be stored there.
It would be nice to define the directory/folder as a generate option:
ng g library foo -d libs/datelibs/
ng g library bar -d libs/layoutlibs/
ng g application -d projects/mysubapp
Just figured out that you could generate libraries with namespace.
For example:
ng g library @namespace/xxx
ng g library @namespace/yyy
Will generate two libraries with following structure

@ (at sign) is required for namespace.

For some reason it's not mentioned in wiki.
https://github.com/angular/angular-cli/wiki/generate
@filipesilva Should be documented, don't you think ?
@filipesilva this should definitely be documented. can you maybe promote from your backlog?
It will a good feature, so developers can easily understand libs and projects (i.e application).
Most helpful comment
Just figured out that you could generate libraries with namespace.
For example:
ng g library @namespace/xxxng g library @namespace/yyyWill generate two libraries with following structure

@(at sign) is required for namespace.For some reason it's not mentioned in wiki.
https://github.com/angular/angular-cli/wiki/generate
@filipesilva Should be documented, don't you think ?