json-stream-lite - v1.3.0
    Preparing search index...

    Type Alias JsonParserOptions

    Options for configuring JSON parsing behavior.

    type JsonParserOptions = {
        jsonc?: boolean;
        strict?: boolean;
    }
    Index

    Properties

    Properties

    jsonc?: boolean

    Enable JSONC (JSON with Comments) parsing. Allows // and /* * / comments.

    strict?: boolean

    Enforce strict JSON parsing. When false, trailing commas are allowed. Default: true.