I need to create a component without the folder. I am using Angular-Cli command ng g c testing to create the component. But, the command creates an folder wrapper f
ng g c testing
You can use --flat flag.
--flat
ng g c test --flat
For more information follow this link
flat = true | false When true creates the new files at the top level of the current project. Default: false
flat = true | false
When true creates the new files at the top level of the current project.
Default: false