JSONSerializable:
    | string
    | number
    | boolean
    | null
    | JSONSerializable[]
    | { [key: string]: JSONSerializable }

Note that behavior of Infinity, -Infinity, and NaN is undefined. Implementation based on https://github.com/microsoft/TypeScript/pull/33050#issue-484549713