Subset of compiler options that makes sense for the runtime.

interface RuntimeCompilerOptions {
    comments?: boolean;
    delimiters?: [string, string];
    isCustomElement?: ((tag) => boolean);
    whitespace?: "preserve" | "condense";
}

Properties

comments?: boolean
delimiters?: [string, string]
isCustomElement?: ((tag) => boolean)

Type declaration

    • (tag): boolean
    • Parameters

      • tag: string

      Returns boolean

whitespace?: "preserve" | "condense"

Generated using TypeDoc