Typedoc
BuildOptions
The following data structure represents the configuration operations for the qui-typedoc
config file.
Name & Description | Option(s) | Default |
---|---|---|
The relative file path for the TypeDoc API JSON output. This file is generated
by typedoc and contains the raw interfaces and types. |
| |
It is recommended to leave this option alone unless you are debugging. The type
information is a lot of data, so the detection strategy defaults to
only-public to remove unused types. |
| 'only-public' |
The log level for runtime logs. |
| 'info' |
The relative file path for the resolved interfaces. Our parser strips the
irrelevant information from the typedoc JSON and adds formatted API data
featuring expanded pretty types, links to named types, and more. |
| ".typedoc/doc-props.json" |
Whether to prettify the output JSON to make it human-readable. |
| |
Optional overrides for typedoc Application options. Refer to defaultOptions for details about the default configuration. |
|
Type
string
Description
The relative file path for the TypeDoc API JSON output. This file is generated
by typedoc and contains the raw interfaces and types.
Type
| 'only-public'| 'all'
Default
'only-public'
Description
It is recommended to leave this option alone unless you are debugging. The type
information is a lot of data, so the detection strategy defaults to
only-public
to remove unused types.Type
| 'info'| 'quiet'
Default
'info'
Description
The log level for runtime logs.
Type
string
Default
".typedoc/doc-props.json"
Description
The relative file path for the resolved interfaces. Our parser strips the
irrelevant information from the typedoc JSON and adds formatted API data
featuring expanded pretty types, links to named types, and more.
Type
boolean
Description
Whether to prettify the output JSON to make it human-readable.
Type
Partial<TypeDocOptions>
Description
Optional overrides for typedoc Application options.
Refer to defaultOptions for details about the default configuration.
Refer to defaultOptions for details about the default configuration.