Interface CompilerOptions

    Package: grammarkdown

    Options that control the behavior of the compiler.

    Properties

    diagnostics

    Indicates whether internal diagnostic information should be reported to the console.

    Declaration
    diagnostics?: boolean;
    Property Value
    boolean

    emitLinks

    Indicates whether to include hyperlinks in the emit output.

    Declaration
    emitLinks?: boolean;
    Property Value
    boolean

    format

    Indicates the emit output format.

    Declaration
    format?: EmitFormat;
    Property Value
    EmitFormat

    newLine

    Indicates the token to use for line terminators during emit.

    Declaration
    newLine?: NewLineKind;
    Property Value
    NewLineKind

    noChecks

    Indicates that diagnostics should not be reported.

    Declaration
    noChecks?: boolean;
    Property Value
    boolean

    noEmit

    Indicates that emit output should not be produced.

    Declaration
    noEmit?: boolean;
    Property Value
    boolean

    noEmitOnError

    Indicates that emit output should not be produced if any diagnostics are reported.

    Declaration
    noEmitOnError?: boolean;
    Property Value
    boolean

    noStrictParametricProductions

    Disables strict checking of production parameters.

    Declaration
    noStrictParametricProductions?: boolean;
    Property Value
    boolean

    noUnusedParameters

    Indicates that diagnostics should be produced if production parameters are unused.

    Declaration
    noUnusedParameters?: boolean;
    Property Value
    boolean

    out

    Indicates the file path for emit output.

    Declaration
    out?: string;
    Property Value
    string

    • Improve this Doc
    Generated by DocFX