Langium - v4.0.0
    Preparing search index...

    Interface LanguageMetaData

    Metadata of a language.

    interface LanguageMetaData {
        caseInsensitive: boolean;
        fileExtensions: readonly string[];
        fileNames?: readonly string[];
        languageId: string;
        mode: "development" | "production";
    }
    Index

    Properties

    caseInsensitive: boolean
    fileExtensions: readonly string[]
    fileNames?: readonly string[]
    languageId: string
    mode: "development" | "production"

    Mode used to optimize code for development or production environments.

    In production mode, all Chevrotain lexer/parser validations are disabled.