@@ -76,75 +76,75 @@ export type TypeDocOptionValues = {
7676export interface TypeDocOptionMap {
7777 options : string ;
7878 tsconfig : string ;
79+ compilerOptions : unknown ;
7980
8081 entryPoints : string [ ] ;
8182 entryPointStrategy : typeof EntryPointStrategy ;
8283
8384 exclude : string [ ] ;
8485 externalPattern : string [ ] ;
8586 excludeExternals : boolean ;
86- excludePrivate : boolean ;
87- excludeProtected : boolean ;
8887 excludeNotDocumented : boolean ;
8988 excludeInternal : boolean ;
90- disableSources : boolean ;
91- basePath : string ;
92- includes : string ;
89+ excludePrivate : boolean ;
90+ excludeProtected : boolean ;
9391 media : string ;
94-
95- emit : typeof EmitStrategy ;
96- watch : boolean ;
97- preserveWatchOutput : boolean ;
92+ includes : string ;
9893
9994 out : string ;
10095 json : string ;
10196 pretty : boolean ;
102-
97+ emit : typeof EmitStrategy ;
10398 theme : string ;
99+
104100 lightHighlightTheme : ShikiTheme ;
105101 darkHighlightTheme : ShikiTheme ;
106102 customCss : string ;
107- visibilityFilters : ManuallyValidatedOption < {
108- protected ?: boolean ;
109- private ?: boolean ;
110- inherited ?: boolean ;
111- external ?: boolean ;
112- [ tag : `@${string } `] : boolean ;
113- } > ;
114-
103+ markedOptions : unknown ;
115104 name : string ;
116105 includeVersion : boolean ;
106+ disableSources : boolean ;
107+ basePath : string ;
108+ excludeTags : `@${string } `[ ] ;
117109 readme : string ;
118- defaultCategory : string ;
119- categoryOrder : string [ ] ;
120- categorizeByGroup : boolean ;
121110 cname : string ;
122- sort : SortStrategy [ ] ;
123111 gitRevision : string ;
124112 gitRemote : string ;
125- gaID : string ;
126- githubPages : boolean ;
127113 htmlLang : string ;
114+ githubPages : boolean ;
115+ gaID : string ;
128116 hideGenerator : boolean ;
129117 searchInComments : boolean ;
130118 cleanOutputDir : boolean ;
131119
132120 commentStyle : typeof CommentStyle ;
133- excludeTags : `@${string } `[ ] ;
134121 blockTags : `@${string } `[ ] ;
135122 inlineTags : `@${string } `[ ] ;
136123 modifierTags : `@${string } `[ ] ;
137124
125+ categorizeByGroup : boolean ;
126+ defaultCategory : string ;
127+ categoryOrder : string [ ] ;
128+ sort : SortStrategy [ ] ;
129+ visibilityFilters : ManuallyValidatedOption < {
130+ protected ?: boolean ;
131+ private ?: boolean ;
132+ inherited ?: boolean ;
133+ external ?: boolean ;
134+ [ tag : `@${string } `] : boolean ;
135+ } > ;
136+ searchCategoryBoosts : ManuallyValidatedOption < Record < string , number > > ;
137+ searchGroupBoosts : ManuallyValidatedOption < Record < string , number > > ;
138+
139+ watch : boolean ;
140+ preserveWatchOutput : boolean ;
141+ skipErrorChecking : boolean ;
138142 help : boolean ;
139143 version : boolean ;
140144 showConfig : boolean ;
141145 plugin : string [ ] ;
142- searchCategoryBoosts : ManuallyValidatedOption < Record < string , number > > ;
143- searchGroupBoosts : ManuallyValidatedOption < Record < string , number > > ;
144146 logger : unknown ; // string | Function
145147 logLevel : typeof LogLevel ;
146- markedOptions : unknown ;
147- compilerOptions : unknown ;
148148
149149 // Validation
150150 treatWarningsAsErrors : boolean ;
0 commit comments