Module Values.ReactStartCodegenJobDataSource

Describes the code generation job configuration for a React project.

Sourcetype nonrec t = {
  1. module_ : JSModule.t option;
    (*

    The JavaScript module type.

    *)
  2. target : JSTarget.t option;
    (*

    The ECMAScript specification to use.

    *)
  3. script : JSScript.t option;
    (*

    The file type to use for a JavaScript project.

    *)
  4. renderTypeDeclarations : Boolean.t option;
    (*

    Specifies whether the code generation job should render type declaration files.

    *)
  5. inlineSourceMap : Boolean.t option;
    (*

    Specifies whether the code generation job should render inline source maps.

    *)
  6. apiConfiguration : ApiConfiguration.t option;
    (*

    The API configuration for the code generation job.

    *)
  7. dependencies : ReactCodegenDependencies.t option;
    (*

    Lists the dependency packages that may be required for the project code to run.

    *)
}
Sourceval make : ?module_:??? -> ?target:??? -> ?script:??? -> ?renderTypeDeclarations:??? -> ?inlineSourceMap:??? -> ?apiConfiguration:??? -> ?dependencies:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `Structure of (string * [> `Structure of (string * [> `String of String_.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t