KC's Workspace
    Preparing search index...
    interface JsonOptions {
        namedExports?: boolean;
        stringify?: boolean | "auto";
    }
    Index

    Properties

    namedExports?: boolean

    Generate a named export for every property of the JSON object

    true
    
    stringify?: boolean | "auto"

    Generate performant output as JSON.parse("stringified").

    When set to 'auto', the data will be stringified only if the data is bigger than 10kB.

    'auto'