For example, slideOffsetBefore property is defined as:
slidesOffsetBefore?: number;
When using the tsconfig.json option exactOptionalPropertyTypes, it becomes cumbersome to set the slidesOffsetBefore to undefined. Updating the TypeScript definitions like so would improve the developer experience:
slidesOffsetBefore?: number | undefined;