Subset of compiler options that makes sense for the runtime.

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

Properties

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