Variable OptionDefaultsConst

OptionDefaults: {
    blockTags: readonly `@${string}`[];
    cascadedModifierTags: readonly `@${string}`[];
    excludeNotDocumentedKinds: readonly EnumKeys<typeof ReflectionKind>[];
    excludeTags: readonly `@${string}`[];
    highlightLanguages: readonly BundledLanguage[];
    inlineTags: readonly `@${string}`[];
    kindSortOrder: readonly EnumKeys<typeof ReflectionKind>[];
    modifierTags: readonly `@${string}`[];
    requiredToBeDocumented: readonly EnumKeys<typeof ReflectionKind>[];
    sort: readonly string[];
} = ...

Default values for TypeDoc options. This object should not be modified.