Ive been playing with NestJS for about a week. So far, Im really liking it. The Module system is great. And, I love how easy it is to do things like parse requests.
One question I do have is with regards to the NestJS CLI.
Suppose I have multiple modules. I can create a controller with the following command.
nest g controller Accounts
How do I specify which module this controller belongs to?
The CLI seems to default to the last module you created.
How do I change this behavior?