@nikovirtala/projen-typedoc 0.0.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +78 -78
- package/API.md +83 -83
- package/README.md +10 -0
- package/docs/api/assets/search.js +1 -1
- package/docs/api/classes/TypeDoc.html +11 -11
- package/docs/api/enums/CommentStyle.html +3 -3
- package/docs/api/enums/EntryPointStrategy.html +6 -6
- package/docs/api/enums/LogLevel.html +3 -3
- package/docs/api/enums/Visibility.html +3 -3
- package/docs/api/functions/toJson_TypeDocConfiguration.html +1 -1
- package/docs/api/index.html +9 -1
- package/docs/api/interfaces/TypeDocConfiguration.html +94 -94
- package/docs/api/interfaces/TypeDocOptions.html +3 -3
- package/docs/api/interfaces/ValidationOptions.html +5 -5
- package/lib/index.js +3 -2
- package/lib/typedoc-config.d.ts +67 -67
- package/lib/typedoc-config.js +6 -6
- package/package.json +2 -2
- package/typedoc.jsonc +2 -1
- package/.amazonq/rules/standards.md +0 -320
package/API.md
CHANGED
|
@@ -229,15 +229,15 @@ const typeDocConfiguration: TypeDocConfiguration = { ... }
|
|
|
229
229
|
| **Name** | **Type** | **Description** |
|
|
230
230
|
| --- | --- | --- |
|
|
231
231
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.basePath">basePath</a></code> | <code>string</code> | Specify the base path for all urls. |
|
|
232
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.cacheBust">cacheBust</a></code> | <code>boolean</code> |
|
|
232
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.cacheBust">cacheBust</a></code> | <code>boolean</code> | Include the generation time in links to prevent browsers from using a cached version. |
|
|
233
233
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.categorizeByGroup">categorizeByGroup</a></code> | <code>boolean</code> | Specify the categories that will be used to group reflections. |
|
|
234
234
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.cleanOutputDir">cleanOutputDir</a></code> | <code>boolean</code> | Prevent TypeDoc from cleaning the output directory specified with --out. |
|
|
235
235
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.commentStyle">commentStyle</a></code> | <code><a href="#@nikovirtala/projen-typedoc.CommentStyle">CommentStyle</a></code> | Specify the documentation mode TypeDoc should use. |
|
|
236
236
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.defaultCategory">defaultCategory</a></code> | <code>string</code> | Specify the default category for reflections without a category. |
|
|
237
237
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.defaultGroup">defaultGroup</a></code> | <code>string</code> | Specify the default group for reflections without a group. |
|
|
238
238
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.defaultVisibility">defaultVisibility</a></code> | <code><a href="#@nikovirtala/projen-typedoc.Visibility">Visibility</a></code> | Specify the default visibility for members without a visibility tag. |
|
|
239
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.disableGit">disableGit</a></code> | <code>boolean</code> |
|
|
240
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.disableSources">disableSources</a></code> | <code>boolean</code> |
|
|
239
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.disableGit">disableGit</a></code> | <code>boolean</code> | Disables setting the source of reflections when documenting projects within a Git repository. |
|
|
240
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.disableSources">disableSources</a></code> | <code>boolean</code> | Disables automatically linking to source code. |
|
|
241
241
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.entryPoints">entryPoints</a></code> | <code>string[]</code> | Specifies the entry points to be documented by TypeDoc. |
|
|
242
242
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.entryPointStrategy">entryPointStrategy</a></code> | <code><a href="#@nikovirtala/projen-typedoc.EntryPointStrategy">EntryPointStrategy</a></code> | Specifies the strategy to be used to convert entry points into documentation. |
|
|
243
243
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.exclude">exclude</a></code> | <code>string[]</code> | Define patterns to be excluded when expanding directories. |
|
|
@@ -245,14 +245,14 @@ const typeDocConfiguration: TypeDocConfiguration = { ... }
|
|
|
245
245
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.excludeInternal">excludeInternal</a></code> | <code>boolean</code> | Prevent symbols that are not exported from being documented. |
|
|
246
246
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.excludePrivate">excludePrivate</a></code> | <code>boolean</code> | Prevent private members from being included in the generated documentation. |
|
|
247
247
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.excludeProtected">excludeProtected</a></code> | <code>boolean</code> | Prevent protected members from being included in the generated documentation. |
|
|
248
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.externalPattern">externalPattern</a></code> | <code>string[]</code> |
|
|
249
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.externalSymbolLinkMappings">externalSymbolLinkMappings</a></code> | <code>{[ key: string ]: {[ key: string ]: string}}</code> |
|
|
248
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.externalPattern">externalPattern</a></code> | <code>string[]</code> | Define patterns for files that should be considered external. |
|
|
249
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.externalSymbolLinkMappings">externalSymbolLinkMappings</a></code> | <code>{[ key: string ]: {[ key: string ]: string}}</code> | Define custom mappings for symbols in external packages. |
|
|
250
250
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.gitRemote">gitRemote</a></code> | <code>string</code> | Specify the git remote that should be used to link to source files. |
|
|
251
251
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.gitRevision">gitRevision</a></code> | <code>string</code> | Specify the git revision that should be used to link to source files. |
|
|
252
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.hideGenerator">hideGenerator</a></code> | <code>boolean</code> |
|
|
253
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.hideParameterTypesInTitle">hideParameterTypesInTitle</a></code> | <code>boolean</code> |
|
|
252
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.hideGenerator">hideGenerator</a></code> | <code>boolean</code> | Do not print the TypeDoc link at the end of the page. |
|
|
253
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.hideParameterTypesInTitle">hideParameterTypesInTitle</a></code> | <code>boolean</code> | Hide parameter types in the signature. |
|
|
254
254
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.includes">includes</a></code> | <code>string</code> | Specify the location to look for included documents. |
|
|
255
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.intentionallyNotExported">intentionallyNotExported</a></code> | <code>string[]</code> |
|
|
255
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.intentionallyNotExported">intentionallyNotExported</a></code> | <code>string[]</code> | A list of types that should not produce warnings when not being exported. |
|
|
256
256
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.json">json</a></code> | <code>string</code> | Specify the location the documentation should be written to. |
|
|
257
257
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.logLevel">logLevel</a></code> | <code><a href="#@nikovirtala/projen-typedoc.LogLevel">LogLevel</a></code> | Specify the logger that should be used. |
|
|
258
258
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.media">media</a></code> | <code>string</code> | Specify the location with media files that should be copied to the output directory. |
|
|
@@ -260,20 +260,20 @@ const typeDocConfiguration: TypeDocConfiguration = { ... }
|
|
|
260
260
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.out">out</a></code> | <code>string</code> | Specifies the output directory the documentation should be written to. |
|
|
261
261
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.packageJson">packageJson</a></code> | <code>string</code> | Specify the package.json file that should be used to determine the package name. |
|
|
262
262
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.readme">readme</a></code> | <code>string</code> | Specify the readme file that should be displayed on the index page. |
|
|
263
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.requiredToBeDocumented">requiredToBeDocumented</a></code> | <code>string[]</code> | Specify the
|
|
263
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.requiredToBeDocumented">requiredToBeDocumented</a></code> | <code>string[]</code> | Specify the type of reflections that must be documented. |
|
|
264
264
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchCategoryBoosts">searchCategoryBoosts</a></code> | <code>{[ key: string ]: number}</code> | Specify the search category boosts. |
|
|
265
265
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchGroupBoosts">searchGroupBoosts</a></code> | <code>{[ key: string ]: number}</code> | Specify the search group boosts. |
|
|
266
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchInComments">searchInComments</a></code> | <code>boolean</code> |
|
|
267
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchInDocuments">searchInDocuments</a></code> | <code>boolean</code> |
|
|
266
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchInComments">searchInComments</a></code> | <code>boolean</code> | If set, the search index will also include comments. |
|
|
267
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.searchInDocuments">searchInDocuments</a></code> | <code>boolean</code> | If set, the search index will also include documents. |
|
|
268
268
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.sort">sort</a></code> | <code>string[]</code> | Specify the sort strategy for documented values. |
|
|
269
269
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.sortEntryPoints">sortEntryPoints</a></code> | <code>boolean</code> | Specify the sort strategy for static and instance members. |
|
|
270
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.
|
|
270
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.sourceLinkTemplate">sourceLinkTemplate</a></code> | <code>string</code> | Specify a link template to be used when generating source urls. |
|
|
271
271
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.theme">theme</a></code> | <code>string</code> | Specify a theme name to use. |
|
|
272
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.treatValidationWarningsAsErrors">treatValidationWarningsAsErrors</a></code> | <code>boolean</code> |
|
|
273
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.treatWarningsAsErrors">treatWarningsAsErrors</a></code> | <code>boolean</code> |
|
|
272
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.treatValidationWarningsAsErrors">treatValidationWarningsAsErrors</a></code> | <code>boolean</code> | If set, validation warnings will be treated as errors. |
|
|
273
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.treatWarningsAsErrors">treatWarningsAsErrors</a></code> | <code>boolean</code> | If set, warnings will be treated as errors. |
|
|
274
274
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.tsBuildInfo">tsBuildInfo</a></code> | <code>string</code> | Specify the location and filename a .tsbuildinfo file should be written to. |
|
|
275
275
|
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.tsconfig">tsconfig</a></code> | <code>string</code> | Specify a TypeScript config file that should be used to load TypeScript configuration. |
|
|
276
|
-
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.validation">validation</a></code> | <code><a href="#@nikovirtala/projen-typedoc.ValidationOptions">ValidationOptions</a></code> | Specify
|
|
276
|
+
| <code><a href="#@nikovirtala/projen-typedoc.TypeDocConfiguration.property.validation">validation</a></code> | <code><a href="#@nikovirtala/projen-typedoc.ValidationOptions">ValidationOptions</a></code> | Specify validation options. |
|
|
277
277
|
|
|
278
278
|
---
|
|
279
279
|
|
|
@@ -287,7 +287,7 @@ public readonly basePath: string;
|
|
|
287
287
|
|
|
288
288
|
Specify the base path for all urls.
|
|
289
289
|
|
|
290
|
-
> [https://typedoc.org/
|
|
290
|
+
> [https://typedoc.org/documents/Options.Output.html#basepath](https://typedoc.org/documents/Options.Output.html#basepath)
|
|
291
291
|
|
|
292
292
|
---
|
|
293
293
|
|
|
@@ -299,9 +299,9 @@ public readonly cacheBust: boolean;
|
|
|
299
299
|
|
|
300
300
|
- *Type:* boolean
|
|
301
301
|
|
|
302
|
-
|
|
302
|
+
Include the generation time in links to prevent browsers from using a cached version.
|
|
303
303
|
|
|
304
|
-
> [https://typedoc.org/
|
|
304
|
+
> [https://typedoc.org/documents/Options.Output.html#cachebust](https://typedoc.org/documents/Options.Output.html#cachebust)
|
|
305
305
|
|
|
306
306
|
---
|
|
307
307
|
|
|
@@ -315,7 +315,7 @@ public readonly categorizeByGroup: boolean;
|
|
|
315
315
|
|
|
316
316
|
Specify the categories that will be used to group reflections.
|
|
317
317
|
|
|
318
|
-
> [https://typedoc.org/
|
|
318
|
+
> [https://typedoc.org/documents/Options.Organization.html#categorizebygroup](https://typedoc.org/documents/Options.Organization.html#categorizebygroup)
|
|
319
319
|
|
|
320
320
|
---
|
|
321
321
|
|
|
@@ -329,7 +329,7 @@ public readonly cleanOutputDir: boolean;
|
|
|
329
329
|
|
|
330
330
|
Prevent TypeDoc from cleaning the output directory specified with --out.
|
|
331
331
|
|
|
332
|
-
> [https://typedoc.org/
|
|
332
|
+
> [https://typedoc.org/documents/Options.Output.html#cleanoutputdir](https://typedoc.org/documents/Options.Output.html#cleanoutputdir)
|
|
333
333
|
|
|
334
334
|
---
|
|
335
335
|
|
|
@@ -343,7 +343,7 @@ public readonly commentStyle: CommentStyle;
|
|
|
343
343
|
|
|
344
344
|
Specify the documentation mode TypeDoc should use.
|
|
345
345
|
|
|
346
|
-
> [https://typedoc.org/
|
|
346
|
+
> [https://typedoc.org/documents/Options.Comments.html#commentstyle](https://typedoc.org/documents/Options.Comments.html#commentstyle)
|
|
347
347
|
|
|
348
348
|
---
|
|
349
349
|
|
|
@@ -357,7 +357,7 @@ public readonly defaultCategory: string;
|
|
|
357
357
|
|
|
358
358
|
Specify the default category for reflections without a category.
|
|
359
359
|
|
|
360
|
-
> [https://typedoc.org/
|
|
360
|
+
> [https://typedoc.org/documents/Options.Organization.html#defaultcategory](https://typedoc.org/documents/Options.Organization.html#defaultcategory)
|
|
361
361
|
|
|
362
362
|
---
|
|
363
363
|
|
|
@@ -371,7 +371,7 @@ public readonly defaultGroup: string;
|
|
|
371
371
|
|
|
372
372
|
Specify the default group for reflections without a group.
|
|
373
373
|
|
|
374
|
-
> [https://typedoc.org/
|
|
374
|
+
> [https://typedoc.org/documents/Options.Organization.html#defaultgroup](https://typedoc.org/documents/Options.Organization.html#defaultgroup)
|
|
375
375
|
|
|
376
376
|
---
|
|
377
377
|
|
|
@@ -385,7 +385,7 @@ public readonly defaultVisibility: Visibility;
|
|
|
385
385
|
|
|
386
386
|
Specify the default visibility for members without a visibility tag.
|
|
387
387
|
|
|
388
|
-
> [https://typedoc.org/
|
|
388
|
+
> [https://typedoc.org/documents/Options.Comments.html#defaultvisibility](https://typedoc.org/documents/Options.Comments.html#defaultvisibility)
|
|
389
389
|
|
|
390
390
|
---
|
|
391
391
|
|
|
@@ -397,9 +397,9 @@ public readonly disableGit: boolean;
|
|
|
397
397
|
|
|
398
398
|
- *Type:* boolean
|
|
399
399
|
|
|
400
|
-
|
|
400
|
+
Disables setting the source of reflections when documenting projects within a Git repository.
|
|
401
401
|
|
|
402
|
-
> [https://typedoc.org/
|
|
402
|
+
> [https://typedoc.org/documents/Options.Comments.html#disablegit](https://typedoc.org/documents/Options.Comments.html#disablegit)
|
|
403
403
|
|
|
404
404
|
---
|
|
405
405
|
|
|
@@ -411,9 +411,9 @@ public readonly disableSources: boolean;
|
|
|
411
411
|
|
|
412
412
|
- *Type:* boolean
|
|
413
413
|
|
|
414
|
-
|
|
414
|
+
Disables automatically linking to source code.
|
|
415
415
|
|
|
416
|
-
> [https://typedoc.org/
|
|
416
|
+
> [https://typedoc.org/documents/Options.Comments.html#disablesources](https://typedoc.org/documents/Options.Comments.html#disablesources)
|
|
417
417
|
|
|
418
418
|
---
|
|
419
419
|
|
|
@@ -427,7 +427,7 @@ public readonly entryPoints: string[];
|
|
|
427
427
|
|
|
428
428
|
Specifies the entry points to be documented by TypeDoc.
|
|
429
429
|
|
|
430
|
-
> [https://typedoc.org/
|
|
430
|
+
> [https://typedoc.org/documents/Options.Input.html#entrypoints](https://typedoc.org/documents/Options.Input.html#entrypoints)
|
|
431
431
|
|
|
432
432
|
---
|
|
433
433
|
|
|
@@ -441,7 +441,7 @@ public readonly entryPointStrategy: EntryPointStrategy;
|
|
|
441
441
|
|
|
442
442
|
Specifies the strategy to be used to convert entry points into documentation.
|
|
443
443
|
|
|
444
|
-
> [https://typedoc.org/
|
|
444
|
+
> [https://typedoc.org/documents/Options.Input.html#entrypointstrategy](https://typedoc.org/documents/Options.Input.html#entrypointstrategy)
|
|
445
445
|
|
|
446
446
|
---
|
|
447
447
|
|
|
@@ -455,7 +455,7 @@ public readonly exclude: string[];
|
|
|
455
455
|
|
|
456
456
|
Define patterns to be excluded when expanding directories.
|
|
457
457
|
|
|
458
|
-
> [https://typedoc.org/
|
|
458
|
+
> [https://typedoc.org/documents/Options.Input.html#exclude](https://typedoc.org/documents/Options.Input.html#exclude)
|
|
459
459
|
|
|
460
460
|
---
|
|
461
461
|
|
|
@@ -469,7 +469,7 @@ public readonly excludeExternals: boolean;
|
|
|
469
469
|
|
|
470
470
|
Prevent externally resolved symbols from being documented.
|
|
471
471
|
|
|
472
|
-
> [https://typedoc.org/
|
|
472
|
+
> [https://typedoc.org/documents/Options.Input.html#excludeexternals](https://typedoc.org/documents/Options.Input.html#excludeexternals)
|
|
473
473
|
|
|
474
474
|
---
|
|
475
475
|
|
|
@@ -483,7 +483,7 @@ public readonly excludeInternal: boolean;
|
|
|
483
483
|
|
|
484
484
|
Prevent symbols that are not exported from being documented.
|
|
485
485
|
|
|
486
|
-
> [https://typedoc.org/
|
|
486
|
+
> [https://typedoc.org/documents/Options.Input.html#excludeinternal](https://typedoc.org/documents/Options.Input.html#excludeinternal)
|
|
487
487
|
|
|
488
488
|
---
|
|
489
489
|
|
|
@@ -497,7 +497,7 @@ public readonly excludePrivate: boolean;
|
|
|
497
497
|
|
|
498
498
|
Prevent private members from being included in the generated documentation.
|
|
499
499
|
|
|
500
|
-
> [https://typedoc.org/
|
|
500
|
+
> [https://typedoc.org/documents/Options.Input.html#excludeprivate](https://typedoc.org/documents/Options.Input.html#excludeprivate)
|
|
501
501
|
|
|
502
502
|
---
|
|
503
503
|
|
|
@@ -511,7 +511,7 @@ public readonly excludeProtected: boolean;
|
|
|
511
511
|
|
|
512
512
|
Prevent protected members from being included in the generated documentation.
|
|
513
513
|
|
|
514
|
-
> [https://typedoc.org/
|
|
514
|
+
> [https://typedoc.org/documents/Options.Input.html#excludeprotected](https://typedoc.org/documents/Options.Input.html#excludeprotected)
|
|
515
515
|
|
|
516
516
|
---
|
|
517
517
|
|
|
@@ -523,9 +523,9 @@ public readonly externalPattern: string[];
|
|
|
523
523
|
|
|
524
524
|
- *Type:* string[]
|
|
525
525
|
|
|
526
|
-
|
|
526
|
+
Define patterns for files that should be considered external.
|
|
527
527
|
|
|
528
|
-
> [https://typedoc.org/
|
|
528
|
+
> [https://typedoc.org/documents/Options.Input.html#externalpattern](https://typedoc.org/documents/Options.Input.html#externalpattern)
|
|
529
529
|
|
|
530
530
|
---
|
|
531
531
|
|
|
@@ -537,9 +537,9 @@ public readonly externalSymbolLinkMappings: {[ key: string ]: {[ key: string ]:
|
|
|
537
537
|
|
|
538
538
|
- *Type:* {[ key: string ]: {[ key: string ]: string}}
|
|
539
539
|
|
|
540
|
-
|
|
540
|
+
Define custom mappings for symbols in external packages.
|
|
541
541
|
|
|
542
|
-
> [https://typedoc.org/
|
|
542
|
+
> [https://typedoc.org/documents/Options.Comments.html#externalsymbollinkmappings](https://typedoc.org/documents/Options.Comments.html#externalsymbollinkmappings)
|
|
543
543
|
|
|
544
544
|
---
|
|
545
545
|
|
|
@@ -553,7 +553,7 @@ public readonly gitRemote: string;
|
|
|
553
553
|
|
|
554
554
|
Specify the git remote that should be used to link to source files.
|
|
555
555
|
|
|
556
|
-
> [https://typedoc.org/
|
|
556
|
+
> [https://typedoc.org/documents/Options.Comments.html#gitremote](https://typedoc.org/documents/Options.Comments.html#gitremote)
|
|
557
557
|
|
|
558
558
|
---
|
|
559
559
|
|
|
@@ -567,7 +567,7 @@ public readonly gitRevision: string;
|
|
|
567
567
|
|
|
568
568
|
Specify the git revision that should be used to link to source files.
|
|
569
569
|
|
|
570
|
-
> [https://typedoc.org/
|
|
570
|
+
> [https://typedoc.org/documents/Options.Comments.html#gitrevision](https://typedoc.org/documents/Options.Comments.html#gitrevision)
|
|
571
571
|
|
|
572
572
|
---
|
|
573
573
|
|
|
@@ -579,9 +579,9 @@ public readonly hideGenerator: boolean;
|
|
|
579
579
|
|
|
580
580
|
- *Type:* boolean
|
|
581
581
|
|
|
582
|
-
|
|
582
|
+
Do not print the TypeDoc link at the end of the page.
|
|
583
583
|
|
|
584
|
-
> [https://typedoc.org/
|
|
584
|
+
> [https://typedoc.org/documents/Options.Output.html#hidegenerator](https://typedoc.org/documents/Options.Output.html#hidegenerator)
|
|
585
585
|
|
|
586
586
|
---
|
|
587
587
|
|
|
@@ -593,9 +593,9 @@ public readonly hideParameterTypesInTitle: boolean;
|
|
|
593
593
|
|
|
594
594
|
- *Type:* boolean
|
|
595
595
|
|
|
596
|
-
|
|
596
|
+
Hide parameter types in the signature.
|
|
597
597
|
|
|
598
|
-
> [https://typedoc.org/
|
|
598
|
+
> [https://typedoc.org/documents/Options.Output.html#hideparametertypesintitle](https://typedoc.org/documents/Options.Output.html#hideparametertypesintitle)
|
|
599
599
|
|
|
600
600
|
---
|
|
601
601
|
|
|
@@ -609,7 +609,7 @@ public readonly includes: string;
|
|
|
609
609
|
|
|
610
610
|
Specify the location to look for included documents.
|
|
611
611
|
|
|
612
|
-
> [https://typedoc.org/
|
|
612
|
+
> [https://typedoc.org/documents/Options.Output.html#includes](https://typedoc.org/documents/Options.Output.html#includes)
|
|
613
613
|
|
|
614
614
|
---
|
|
615
615
|
|
|
@@ -621,9 +621,9 @@ public readonly intentionallyNotExported: string[];
|
|
|
621
621
|
|
|
622
622
|
- *Type:* string[]
|
|
623
623
|
|
|
624
|
-
|
|
624
|
+
A list of types that should not produce warnings when not being exported.
|
|
625
625
|
|
|
626
|
-
> [https://typedoc.org/
|
|
626
|
+
> [https://typedoc.org/documents/Options.Validation.html#intentionallynotexported](https://typedoc.org/documents/Options.Validation.html#intentionallynotexported)
|
|
627
627
|
|
|
628
628
|
---
|
|
629
629
|
|
|
@@ -637,7 +637,7 @@ public readonly json: string;
|
|
|
637
637
|
|
|
638
638
|
Specify the location the documentation should be written to.
|
|
639
639
|
|
|
640
|
-
> [https://typedoc.org/
|
|
640
|
+
> [https://typedoc.org/documents/Options.Output.html#json](https://typedoc.org/documents/Options.Output.html#json)
|
|
641
641
|
|
|
642
642
|
---
|
|
643
643
|
|
|
@@ -651,7 +651,7 @@ public readonly logLevel: LogLevel;
|
|
|
651
651
|
|
|
652
652
|
Specify the logger that should be used.
|
|
653
653
|
|
|
654
|
-
> [https://typedoc.org/
|
|
654
|
+
> [https://typedoc.org/documents/Options.Other.html#loglevel](https://typedoc.org/documents/Options.Other.html#loglevel)
|
|
655
655
|
|
|
656
656
|
---
|
|
657
657
|
|
|
@@ -665,7 +665,7 @@ public readonly media: string;
|
|
|
665
665
|
|
|
666
666
|
Specify the location with media files that should be copied to the output directory.
|
|
667
667
|
|
|
668
|
-
> [https://typedoc.org/
|
|
668
|
+
> [https://typedoc.org/documents/Options.Output.html#media](https://typedoc.org/documents/Options.Output.html#media)
|
|
669
669
|
|
|
670
670
|
---
|
|
671
671
|
|
|
@@ -679,7 +679,7 @@ public readonly name: string;
|
|
|
679
679
|
|
|
680
680
|
Set the name of the project that will be used in the header of the template.
|
|
681
681
|
|
|
682
|
-
> [https://typedoc.org/
|
|
682
|
+
> [https://typedoc.org/documents/Options.Output.html#name](https://typedoc.org/documents/Options.Output.html#name)
|
|
683
683
|
|
|
684
684
|
---
|
|
685
685
|
|
|
@@ -693,7 +693,7 @@ public readonly out: string;
|
|
|
693
693
|
|
|
694
694
|
Specifies the output directory the documentation should be written to.
|
|
695
695
|
|
|
696
|
-
> [https://typedoc.org/
|
|
696
|
+
> [https://typedoc.org/documents/Options.Output.html#out](https://typedoc.org/documents/Options.Output.html#out)
|
|
697
697
|
|
|
698
698
|
---
|
|
699
699
|
|
|
@@ -707,7 +707,7 @@ public readonly packageJson: string;
|
|
|
707
707
|
|
|
708
708
|
Specify the package.json file that should be used to determine the package name.
|
|
709
709
|
|
|
710
|
-
> [https://typedoc.org/
|
|
710
|
+
> [https://typedoc.org/documents/Options.Input.html#packagejson](https://typedoc.org/documents/Options.Input.html#packagejson)
|
|
711
711
|
|
|
712
712
|
---
|
|
713
713
|
|
|
@@ -721,7 +721,7 @@ public readonly readme: string;
|
|
|
721
721
|
|
|
722
722
|
Specify the readme file that should be displayed on the index page.
|
|
723
723
|
|
|
724
|
-
> [https://typedoc.org/
|
|
724
|
+
> [https://typedoc.org/documents/Options.Input.html#readme](https://typedoc.org/documents/Options.Input.html#readme)
|
|
725
725
|
|
|
726
726
|
---
|
|
727
727
|
|
|
@@ -733,9 +733,9 @@ public readonly requiredToBeDocumented: string[];
|
|
|
733
733
|
|
|
734
734
|
- *Type:* string[]
|
|
735
735
|
|
|
736
|
-
Specify the
|
|
736
|
+
Specify the type of reflections that must be documented.
|
|
737
737
|
|
|
738
|
-
> [https://typedoc.org/
|
|
738
|
+
> [https://typedoc.org/documents/Options.Validation.html#requiredtobedocumented](https://typedoc.org/documents/Options.Validation.html#requiredtobedocumented)
|
|
739
739
|
|
|
740
740
|
---
|
|
741
741
|
|
|
@@ -749,7 +749,7 @@ public readonly searchCategoryBoosts: {[ key: string ]: number};
|
|
|
749
749
|
|
|
750
750
|
Specify the search category boosts.
|
|
751
751
|
|
|
752
|
-
> [https://typedoc.org/
|
|
752
|
+
> [https://typedoc.org/documents/Options.Organization.html#searchcategoryboosts](https://typedoc.org/documents/Options.Organization.html#searchcategoryboosts)
|
|
753
753
|
|
|
754
754
|
---
|
|
755
755
|
|
|
@@ -763,7 +763,7 @@ public readonly searchGroupBoosts: {[ key: string ]: number};
|
|
|
763
763
|
|
|
764
764
|
Specify the search group boosts.
|
|
765
765
|
|
|
766
|
-
> [https://typedoc.org/
|
|
766
|
+
> [https://typedoc.org/documents/Options.Organization.html#searchgroupboosts](https://typedoc.org/documents/Options.Organization.html#searchgroupboosts)
|
|
767
767
|
|
|
768
768
|
---
|
|
769
769
|
|
|
@@ -775,9 +775,9 @@ public readonly searchInComments: boolean;
|
|
|
775
775
|
|
|
776
776
|
- *Type:* boolean
|
|
777
777
|
|
|
778
|
-
|
|
778
|
+
If set, the search index will also include comments.
|
|
779
779
|
|
|
780
|
-
> [https://typedoc.org/
|
|
780
|
+
> [https://typedoc.org/documents/Options.Output.html#searchincomments](https://typedoc.org/documents/Options.Output.html#searchincomments)
|
|
781
781
|
|
|
782
782
|
---
|
|
783
783
|
|
|
@@ -789,9 +789,9 @@ public readonly searchInDocuments: boolean;
|
|
|
789
789
|
|
|
790
790
|
- *Type:* boolean
|
|
791
791
|
|
|
792
|
-
|
|
792
|
+
If set, the search index will also include documents.
|
|
793
793
|
|
|
794
|
-
> [https://typedoc.org/
|
|
794
|
+
> [https://typedoc.org/documents/Options.Output.html#searchindocuments](https://typedoc.org/documents/Options.Output.html#searchindocuments)
|
|
795
795
|
|
|
796
796
|
---
|
|
797
797
|
|
|
@@ -805,7 +805,7 @@ public readonly sort: string[];
|
|
|
805
805
|
|
|
806
806
|
Specify the sort strategy for documented values.
|
|
807
807
|
|
|
808
|
-
> [https://typedoc.org/
|
|
808
|
+
> [https://typedoc.org/documents/Options.Organization.html#sort](https://typedoc.org/documents/Options.Organization.html#sort)
|
|
809
809
|
|
|
810
810
|
---
|
|
811
811
|
|
|
@@ -819,21 +819,21 @@ public readonly sortEntryPoints: boolean;
|
|
|
819
819
|
|
|
820
820
|
Specify the sort strategy for static and instance members.
|
|
821
821
|
|
|
822
|
-
> [https://typedoc.org/
|
|
822
|
+
> [https://typedoc.org/documents/Options.Organization.html#sortentrypoints](https://typedoc.org/documents/Options.Organization.html#sortentrypoints)
|
|
823
823
|
|
|
824
824
|
---
|
|
825
825
|
|
|
826
|
-
##### `
|
|
826
|
+
##### `sourceLinkTemplate`<sup>Optional</sup> <a name="sourceLinkTemplate" id="@nikovirtala/projen-typedoc.TypeDocConfiguration.property.sourceLinkTemplate"></a>
|
|
827
827
|
|
|
828
828
|
```typescript
|
|
829
|
-
public readonly
|
|
829
|
+
public readonly sourceLinkTemplate: string;
|
|
830
830
|
```
|
|
831
831
|
|
|
832
832
|
- *Type:* string
|
|
833
833
|
|
|
834
|
-
Specify
|
|
834
|
+
Specify a link template to be used when generating source urls.
|
|
835
835
|
|
|
836
|
-
> [https://typedoc.org/
|
|
836
|
+
> [https://typedoc.org/documents/Options.Input.html#sourcelinktemplate](https://typedoc.org/documents/Options.Input.html#sourcelinktemplate)
|
|
837
837
|
|
|
838
838
|
---
|
|
839
839
|
|
|
@@ -847,7 +847,7 @@ public readonly theme: string;
|
|
|
847
847
|
|
|
848
848
|
Specify a theme name to use.
|
|
849
849
|
|
|
850
|
-
> [https://typedoc.org/
|
|
850
|
+
> [https://typedoc.org/documents/Options.Output.html#theme](https://typedoc.org/documents/Options.Output.html#theme)
|
|
851
851
|
|
|
852
852
|
---
|
|
853
853
|
|
|
@@ -859,9 +859,9 @@ public readonly treatValidationWarningsAsErrors: boolean;
|
|
|
859
859
|
|
|
860
860
|
- *Type:* boolean
|
|
861
861
|
|
|
862
|
-
|
|
862
|
+
If set, validation warnings will be treated as errors.
|
|
863
863
|
|
|
864
|
-
> [https://typedoc.org/
|
|
864
|
+
> [https://typedoc.org/documents/Options.Validation.html#treatvalidationwarningsaserrors](https://typedoc.org/documents/Options.Validation.html#treatvalidationwarningsaserrors)
|
|
865
865
|
|
|
866
866
|
---
|
|
867
867
|
|
|
@@ -873,9 +873,9 @@ public readonly treatWarningsAsErrors: boolean;
|
|
|
873
873
|
|
|
874
874
|
- *Type:* boolean
|
|
875
875
|
|
|
876
|
-
|
|
876
|
+
If set, warnings will be treated as errors.
|
|
877
877
|
|
|
878
|
-
> [https://typedoc.org/
|
|
878
|
+
> [https://typedoc.org/documents/Options.Validation.html#treatwarningsaserrors](https://typedoc.org/documents/Options.Validation.html#treatwarningsaserrors)
|
|
879
879
|
|
|
880
880
|
---
|
|
881
881
|
|
|
@@ -889,7 +889,7 @@ public readonly tsBuildInfo: string;
|
|
|
889
889
|
|
|
890
890
|
Specify the location and filename a .tsbuildinfo file should be written to.
|
|
891
891
|
|
|
892
|
-
> [https://typedoc.org/
|
|
892
|
+
> [https://typedoc.org/documents/Options.Input.html#tsbuildinfo](https://typedoc.org/documents/Options.Input.html#tsbuildinfo)
|
|
893
893
|
|
|
894
894
|
---
|
|
895
895
|
|
|
@@ -903,7 +903,7 @@ public readonly tsconfig: string;
|
|
|
903
903
|
|
|
904
904
|
Specify a TypeScript config file that should be used to load TypeScript configuration.
|
|
905
905
|
|
|
906
|
-
> [https://typedoc.org/
|
|
906
|
+
> [https://typedoc.org/documents/Options.Input.html#tsconfig](https://typedoc.org/documents/Options.Input.html#tsconfig)
|
|
907
907
|
|
|
908
908
|
---
|
|
909
909
|
|
|
@@ -915,9 +915,9 @@ public readonly validation: ValidationOptions;
|
|
|
915
915
|
|
|
916
916
|
- *Type:* <a href="#@nikovirtala/projen-typedoc.ValidationOptions">ValidationOptions</a>
|
|
917
917
|
|
|
918
|
-
Specify
|
|
918
|
+
Specify validation options.
|
|
919
919
|
|
|
920
|
-
> [https://typedoc.org/
|
|
920
|
+
> [https://typedoc.org/documents/Options.Validation.html](https://typedoc.org/documents/Options.Validation.html)
|
|
921
921
|
|
|
922
922
|
---
|
|
923
923
|
|
|
@@ -971,7 +971,7 @@ Version of TypeDoc to use.
|
|
|
971
971
|
|
|
972
972
|
Validation options.
|
|
973
973
|
|
|
974
|
-
> [https://typedoc.org/
|
|
974
|
+
> [https://typedoc.org/documents/Options.Validation.html](https://typedoc.org/documents/Options.Validation.html)
|
|
975
975
|
|
|
976
976
|
#### Initializer <a name="Initializer" id="@nikovirtala/projen-typedoc.ValidationOptions.Initializer"></a>
|
|
977
977
|
|
|
@@ -1035,7 +1035,7 @@ If set, TypeDoc will produce warnings when a symbol is referenced by the documen
|
|
|
1035
1035
|
|
|
1036
1036
|
Specifies the documentation mode TypeDoc should use.
|
|
1037
1037
|
|
|
1038
|
-
> [https://typedoc.org/
|
|
1038
|
+
> [https://typedoc.org/documents/Options.Comments.html#commentstyle](https://typedoc.org/documents/Options.Comments.html#commentstyle)
|
|
1039
1039
|
|
|
1040
1040
|
#### Members <a name="Members" id="Members"></a>
|
|
1041
1041
|
|
|
@@ -1072,7 +1072,7 @@ Specifies the documentation mode TypeDoc should use.
|
|
|
1072
1072
|
|
|
1073
1073
|
Specifies the strategy to be used to convert entry points into documentation.
|
|
1074
1074
|
|
|
1075
|
-
> [https://typedoc.org/
|
|
1075
|
+
> [https://typedoc.org/documents/Options.Input.html#entrypointstrategy](https://typedoc.org/documents/Options.Input.html#entrypointstrategy)
|
|
1076
1076
|
|
|
1077
1077
|
#### Members <a name="Members" id="Members"></a>
|
|
1078
1078
|
|
|
@@ -1117,7 +1117,7 @@ Merges multiple projects into a single documentation site.
|
|
|
1117
1117
|
|
|
1118
1118
|
Specifies the logger that should be used.
|
|
1119
1119
|
|
|
1120
|
-
> [https://typedoc.org/
|
|
1120
|
+
> [https://typedoc.org/documents/Options.Other.html#loglevel](https://typedoc.org/documents/Options.Other.html#loglevel)
|
|
1121
1121
|
|
|
1122
1122
|
#### Members <a name="Members" id="Members"></a>
|
|
1123
1123
|
|
|
@@ -1160,7 +1160,7 @@ Specifies the logger that should be used.
|
|
|
1160
1160
|
|
|
1161
1161
|
Specifies the default visibility for members without a visibility tag.
|
|
1162
1162
|
|
|
1163
|
-
> [https://typedoc.org/
|
|
1163
|
+
> [https://typedoc.org/documents/Options.Comments.html#defaultvisibility](https://typedoc.org/documents/Options.Comments.html#defaultvisibility)
|
|
1164
1164
|
|
|
1165
1165
|
#### Members <a name="Members" id="Members"></a>
|
|
1166
1166
|
|
package/README.md
CHANGED
|
@@ -26,6 +26,16 @@ new TypeDoc(project);
|
|
|
26
26
|
project.synth();
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
+
## Default Configuration
|
|
30
|
+
|
|
31
|
+
The component uses the following default configuration:
|
|
32
|
+
|
|
33
|
+
- `entryPointStrategy`: `expand` - Expects all entry points to be top-level directories
|
|
34
|
+
- `out`: `docs/api` - Output directory for generated documentation
|
|
35
|
+
- `exclude`: `["**/*.test.ts"]` - Excludes test files from documentation
|
|
36
|
+
- `excludePrivate`: `true` - Excludes private members from documentation
|
|
37
|
+
- `disableSource`: `true` - Disable links to source (to ensure deterministic build)
|
|
38
|
+
|
|
29
39
|
## Configuration
|
|
30
40
|
|
|
31
41
|
Customize TypeDoc configuration:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
window.searchData = "eJy1nF1T4zgWhv+LuU11o2/
|
|
1
|
+
window.searchData = "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";
|