I want class validator to stop validation as soon as the first error is found.
I know there is a stopAtFirstError
option, but that prevents further validation on property level only. I want to stop it globally:
@IsString() // Let's say this received invalid valuesomeStr: string@IsInt() // I want this to be NOT executedsomeNuber: number
Is this possible?