Interface OptionsBase

This options cascade through the annotations. Options set in the more specific place override the previous option. Ex.

Json Member

overrides TypedJson options.

interface OptionsBase {
    preserveNull?: boolean;
}

Properties

Properties

preserveNull?: boolean

Whether to preserve null in the JSON output. When false it will not emit nor store the property if its value is null. Default: false.