If i have a folder structure like this:
lib/
modules/
some-module/
dto1.ts
some-module2/
dto2.ts
And both dto1.ts and dto2.ts export the same Dto (by name), it becomes a last-in-wins scenario during client generation as all the models get output to one folder.
I think to solve this, models need to either be inlined into the client generation (when exportModels is false) or the models themselves need to be in subfolders separating them out