Module Ppx_css_syntax.Preprocess_arguments

This module contains the parameters sent in via the jbuild/dune file's preprocess field.

The way of interfacing/reading/setting is side-effecty. The arguments are read at the top-level when the module is loaded, and then read with get

type lazy_loading_optimization =
  1. | Lazy_graph
  2. | Eager
  3. | Default
type t = {
  1. dont_hash_prefixes : Core.String.Set.t;
  2. dont_hash : Core.String.Set.t;
  3. lazy_loading_optimization : lazy_loading_optimization;
}
val get : unit -> t
val add_dont_hash : string -> unit
val add_dont_hash_prefixes : string -> unit
val set_lazy_loading_optimization : bool option -> unit