@servicenow/sdk - v4.4.1
    Preparing search index...

    Enumeration JSDocParsingMode

    Index

    Enumeration Members

    ParseAll: 0

    Always parse JSDoc comments and include them in the AST.

    This is the default if no mode is provided.

    ParseForTypeErrors: 2

    Parse only JSDoc comments which are needed to provide correct type errors.

    This will always parse JSDoc in non-TS files, but only parse JSDoc comments containing @see and @link in TS files.

    ParseForTypeInfo: 3

    Parse only JSDoc comments which are needed to provide correct type info.

    This will always parse JSDoc in non-TS files, but never in TS files.

    Note: Do not use this mode if you require accurate type errors; use ParseForTypeErrors instead.

    ParseNone: 1

    Never parse JSDoc comments, mo matter the file type.