Even with @Exclude() decorator from class-transformer library added to a variable, it's being returned when object is created.
Both with empty constructor and with the toPlainOnly property enabled it's fail:
@Exclude()
password: string;
@Exclude({ toPlainOnly: true })
password: string;
What to do?