exactOptionalPropertyTypes: true? exactOptionalPropertyTypes? This rule enforces you do not use the optional param/property ? i.e.must become{ someValue?: string }so you explicitly have to pass{ someValue: string | undefined }toundefinedsomeValue
ON a sidenote: I do like the explicitness of this rule.