@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/.jsii
CHANGED
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
"name": "@nikovirtala/projen-typedoc",
|
|
96
96
|
"readme": {
|
|
97
|
-
"markdown": "# projen-typedoc\n\nTypeDoc component for projen projects.\n\n## Installation\n\n```bash\nnpm install @nikovirtala/projen-typedoc\n```\n\n## Usage\n\nAdd the TypeDoc component to your projen project:\n\n```typescript\nimport { TypeDoc } from \"@nikovirtala/projen-typedoc\";\nimport { javascript } from \"projen\";\n\nconst project = new javascript.NodeProject({\n name: \"my-project\",\n defaultReleaseBranch: \"main\",\n});\n\nnew TypeDoc(project);\n\nproject.synth();\n```\n\n## Configuration\n\nCustomize TypeDoc configuration:\n\n```typescript\nimport { EntryPointStrategy, TypeDoc } from \"@nikovirtala/projen-typedoc\";\nimport { javascript } from \"projen\";\n\nconst project = new javascript.NodeProject({\n name: \"my-project\",\n defaultReleaseBranch: \"main\",\n});\n\nnew TypeDoc(project, {\n version: \"^0.28\",\n typeDocConfig: {\n entryPointStrategy: EntryPointStrategy.EXPAND,\n out: \"docs/api\",\n exclude: [\"**/*.test.ts\"],\n excludePrivate: true,\n name: \"My Project\",\n theme: \"default\",\n },\n});\n\nproject.synth();\n```\n\n## Features\n\n- Automatically installs TypeDoc as a dev dependency\n- Creates `typedoc.jsonc` configuration file\n- Adds `typedoc` task to generate documentation\n- Supports all TypeDoc configuration options\n\n## Tasks\n\nThe component creates the following task:\n\n- `typedoc` - Generate TypeDoc documentation\n\n## License\n\nMIT\n"
|
|
97
|
+
"markdown": "# projen-typedoc\n\nTypeDoc component for projen projects.\n\n## Installation\n\n```bash\nnpm install @nikovirtala/projen-typedoc\n```\n\n## Usage\n\nAdd the TypeDoc component to your projen project:\n\n```typescript\nimport { TypeDoc } from \"@nikovirtala/projen-typedoc\";\nimport { javascript } from \"projen\";\n\nconst project = new javascript.NodeProject({\n name: \"my-project\",\n defaultReleaseBranch: \"main\",\n});\n\nnew TypeDoc(project);\n\nproject.synth();\n```\n\n## Default Configuration\n\nThe component uses the following default configuration:\n\n- `entryPointStrategy`: `expand` - Expects all entry points to be top-level directories\n- `out`: `docs/api` - Output directory for generated documentation\n- `exclude`: `[\"**/*.test.ts\"]` - Excludes test files from documentation\n- `excludePrivate`: `true` - Excludes private members from documentation\n- `disableSource`: `true` - Disable links to source (to ensure deterministic build)\n\n## Configuration\n\nCustomize TypeDoc configuration:\n\n```typescript\nimport { EntryPointStrategy, TypeDoc } from \"@nikovirtala/projen-typedoc\";\nimport { javascript } from \"projen\";\n\nconst project = new javascript.NodeProject({\n name: \"my-project\",\n defaultReleaseBranch: \"main\",\n});\n\nnew TypeDoc(project, {\n version: \"^0.28\",\n typeDocConfig: {\n entryPointStrategy: EntryPointStrategy.EXPAND,\n out: \"docs/api\",\n exclude: [\"**/*.test.ts\"],\n excludePrivate: true,\n name: \"My Project\",\n theme: \"default\",\n },\n});\n\nproject.synth();\n```\n\n## Features\n\n- Automatically installs TypeDoc as a dev dependency\n- Creates `typedoc.jsonc` configuration file\n- Adds `typedoc` task to generate documentation\n- Supports all TypeDoc configuration options\n\n## Tasks\n\nThe component creates the following task:\n\n- `typedoc` - Generate TypeDoc documentation\n\n## License\n\nMIT\n"
|
|
98
98
|
},
|
|
99
99
|
"repository": {
|
|
100
100
|
"type": "git",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"@nikovirtala/projen-typedoc.CommentStyle": {
|
|
111
111
|
"assembly": "@nikovirtala/projen-typedoc",
|
|
112
112
|
"docs": {
|
|
113
|
-
"see": "https://typedoc.org/
|
|
113
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#commentstyle",
|
|
114
114
|
"stability": "stable",
|
|
115
115
|
"summary": "Specifies the documentation mode TypeDoc should use."
|
|
116
116
|
},
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"@nikovirtala/projen-typedoc.EntryPointStrategy": {
|
|
153
153
|
"assembly": "@nikovirtala/projen-typedoc",
|
|
154
154
|
"docs": {
|
|
155
|
-
"see": "https://typedoc.org/
|
|
155
|
+
"see": "https://typedoc.org/documents/Options.Input.html#entrypointstrategy",
|
|
156
156
|
"stability": "stable",
|
|
157
157
|
"summary": "Specifies the strategy to be used to convert entry points into documentation."
|
|
158
158
|
},
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
"@nikovirtala/projen-typedoc.LogLevel": {
|
|
199
199
|
"assembly": "@nikovirtala/projen-typedoc",
|
|
200
200
|
"docs": {
|
|
201
|
-
"see": "https://typedoc.org/
|
|
201
|
+
"see": "https://typedoc.org/documents/Options.Other.html#loglevel",
|
|
202
202
|
"stability": "stable",
|
|
203
203
|
"summary": "Specifies the logger that should be used."
|
|
204
204
|
},
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
},
|
|
258
258
|
"locationInModule": {
|
|
259
259
|
"filename": "src/index.ts",
|
|
260
|
-
"line":
|
|
260
|
+
"line": 57
|
|
261
261
|
},
|
|
262
262
|
"parameters": [
|
|
263
263
|
{
|
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
"kind": "class",
|
|
279
279
|
"locationInModule": {
|
|
280
280
|
"filename": "src/index.ts",
|
|
281
|
-
"line":
|
|
281
|
+
"line": 39
|
|
282
282
|
},
|
|
283
283
|
"methods": [
|
|
284
284
|
{
|
|
@@ -287,7 +287,7 @@
|
|
|
287
287
|
},
|
|
288
288
|
"locationInModule": {
|
|
289
289
|
"filename": "src/index.ts",
|
|
290
|
-
"line":
|
|
290
|
+
"line": 40
|
|
291
291
|
},
|
|
292
292
|
"name": "of",
|
|
293
293
|
"parameters": [
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
"immutable": true,
|
|
318
318
|
"locationInModule": {
|
|
319
319
|
"filename": "src/index.ts",
|
|
320
|
-
"line":
|
|
320
|
+
"line": 55
|
|
321
321
|
},
|
|
322
322
|
"name": "file",
|
|
323
323
|
"type": {
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
"immutable": true,
|
|
333
333
|
"locationInModule": {
|
|
334
334
|
"filename": "src/index.ts",
|
|
335
|
-
"line":
|
|
335
|
+
"line": 50
|
|
336
336
|
},
|
|
337
337
|
"name": "task",
|
|
338
338
|
"type": {
|
|
@@ -361,7 +361,7 @@
|
|
|
361
361
|
{
|
|
362
362
|
"abstract": true,
|
|
363
363
|
"docs": {
|
|
364
|
-
"see": "https://typedoc.org/
|
|
364
|
+
"see": "https://typedoc.org/documents/Options.Output.html#basepath",
|
|
365
365
|
"stability": "stable",
|
|
366
366
|
"summary": "Specify the base path for all urls."
|
|
367
367
|
},
|
|
@@ -379,9 +379,9 @@
|
|
|
379
379
|
{
|
|
380
380
|
"abstract": true,
|
|
381
381
|
"docs": {
|
|
382
|
-
"see": "https://typedoc.org/
|
|
382
|
+
"see": "https://typedoc.org/documents/Options.Output.html#cachebust",
|
|
383
383
|
"stability": "stable",
|
|
384
|
-
"summary": "
|
|
384
|
+
"summary": "Include the generation time in links to prevent browsers from using a cached version."
|
|
385
385
|
},
|
|
386
386
|
"immutable": true,
|
|
387
387
|
"locationInModule": {
|
|
@@ -397,7 +397,7 @@
|
|
|
397
397
|
{
|
|
398
398
|
"abstract": true,
|
|
399
399
|
"docs": {
|
|
400
|
-
"see": "https://typedoc.org/
|
|
400
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#categorizebygroup",
|
|
401
401
|
"stability": "stable",
|
|
402
402
|
"summary": "Specify the categories that will be used to group reflections."
|
|
403
403
|
},
|
|
@@ -415,7 +415,7 @@
|
|
|
415
415
|
{
|
|
416
416
|
"abstract": true,
|
|
417
417
|
"docs": {
|
|
418
|
-
"see": "https://typedoc.org/
|
|
418
|
+
"see": "https://typedoc.org/documents/Options.Output.html#cleanoutputdir",
|
|
419
419
|
"stability": "stable",
|
|
420
420
|
"summary": "Prevent TypeDoc from cleaning the output directory specified with --out."
|
|
421
421
|
},
|
|
@@ -433,7 +433,7 @@
|
|
|
433
433
|
{
|
|
434
434
|
"abstract": true,
|
|
435
435
|
"docs": {
|
|
436
|
-
"see": "https://typedoc.org/
|
|
436
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#commentstyle",
|
|
437
437
|
"stability": "stable",
|
|
438
438
|
"summary": "Specify the documentation mode TypeDoc should use."
|
|
439
439
|
},
|
|
@@ -451,7 +451,7 @@
|
|
|
451
451
|
{
|
|
452
452
|
"abstract": true,
|
|
453
453
|
"docs": {
|
|
454
|
-
"see": "https://typedoc.org/
|
|
454
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#defaultcategory",
|
|
455
455
|
"stability": "stable",
|
|
456
456
|
"summary": "Specify the default category for reflections without a category."
|
|
457
457
|
},
|
|
@@ -469,7 +469,7 @@
|
|
|
469
469
|
{
|
|
470
470
|
"abstract": true,
|
|
471
471
|
"docs": {
|
|
472
|
-
"see": "https://typedoc.org/
|
|
472
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#defaultgroup",
|
|
473
473
|
"stability": "stable",
|
|
474
474
|
"summary": "Specify the default group for reflections without a group."
|
|
475
475
|
},
|
|
@@ -487,7 +487,7 @@
|
|
|
487
487
|
{
|
|
488
488
|
"abstract": true,
|
|
489
489
|
"docs": {
|
|
490
|
-
"see": "https://typedoc.org/
|
|
490
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#defaultvisibility",
|
|
491
491
|
"stability": "stable",
|
|
492
492
|
"summary": "Specify the default visibility for members without a visibility tag."
|
|
493
493
|
},
|
|
@@ -505,9 +505,9 @@
|
|
|
505
505
|
{
|
|
506
506
|
"abstract": true,
|
|
507
507
|
"docs": {
|
|
508
|
-
"see": "https://typedoc.org/
|
|
508
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#disablegit",
|
|
509
509
|
"stability": "stable",
|
|
510
|
-
"summary": "
|
|
510
|
+
"summary": "Disables setting the source of reflections when documenting projects within a Git repository."
|
|
511
511
|
},
|
|
512
512
|
"immutable": true,
|
|
513
513
|
"locationInModule": {
|
|
@@ -523,9 +523,9 @@
|
|
|
523
523
|
{
|
|
524
524
|
"abstract": true,
|
|
525
525
|
"docs": {
|
|
526
|
-
"see": "https://typedoc.org/
|
|
526
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#disablesources",
|
|
527
527
|
"stability": "stable",
|
|
528
|
-
"summary": "
|
|
528
|
+
"summary": "Disables automatically linking to source code."
|
|
529
529
|
},
|
|
530
530
|
"immutable": true,
|
|
531
531
|
"locationInModule": {
|
|
@@ -541,7 +541,7 @@
|
|
|
541
541
|
{
|
|
542
542
|
"abstract": true,
|
|
543
543
|
"docs": {
|
|
544
|
-
"see": "https://typedoc.org/
|
|
544
|
+
"see": "https://typedoc.org/documents/Options.Input.html#entrypoints",
|
|
545
545
|
"stability": "stable",
|
|
546
546
|
"summary": "Specifies the entry points to be documented by TypeDoc."
|
|
547
547
|
},
|
|
@@ -564,7 +564,7 @@
|
|
|
564
564
|
{
|
|
565
565
|
"abstract": true,
|
|
566
566
|
"docs": {
|
|
567
|
-
"see": "https://typedoc.org/
|
|
567
|
+
"see": "https://typedoc.org/documents/Options.Input.html#entrypointstrategy",
|
|
568
568
|
"stability": "stable",
|
|
569
569
|
"summary": "Specifies the strategy to be used to convert entry points into documentation."
|
|
570
570
|
},
|
|
@@ -582,7 +582,7 @@
|
|
|
582
582
|
{
|
|
583
583
|
"abstract": true,
|
|
584
584
|
"docs": {
|
|
585
|
-
"see": "https://typedoc.org/
|
|
585
|
+
"see": "https://typedoc.org/documents/Options.Input.html#exclude",
|
|
586
586
|
"stability": "stable",
|
|
587
587
|
"summary": "Define patterns to be excluded when expanding directories."
|
|
588
588
|
},
|
|
@@ -605,7 +605,7 @@
|
|
|
605
605
|
{
|
|
606
606
|
"abstract": true,
|
|
607
607
|
"docs": {
|
|
608
|
-
"see": "https://typedoc.org/
|
|
608
|
+
"see": "https://typedoc.org/documents/Options.Input.html#excludeexternals",
|
|
609
609
|
"stability": "stable",
|
|
610
610
|
"summary": "Prevent externally resolved symbols from being documented."
|
|
611
611
|
},
|
|
@@ -623,7 +623,7 @@
|
|
|
623
623
|
{
|
|
624
624
|
"abstract": true,
|
|
625
625
|
"docs": {
|
|
626
|
-
"see": "https://typedoc.org/
|
|
626
|
+
"see": "https://typedoc.org/documents/Options.Input.html#excludeinternal",
|
|
627
627
|
"stability": "stable",
|
|
628
628
|
"summary": "Prevent symbols that are not exported from being documented."
|
|
629
629
|
},
|
|
@@ -641,7 +641,7 @@
|
|
|
641
641
|
{
|
|
642
642
|
"abstract": true,
|
|
643
643
|
"docs": {
|
|
644
|
-
"see": "https://typedoc.org/
|
|
644
|
+
"see": "https://typedoc.org/documents/Options.Input.html#excludeprivate",
|
|
645
645
|
"stability": "stable",
|
|
646
646
|
"summary": "Prevent private members from being included in the generated documentation."
|
|
647
647
|
},
|
|
@@ -659,7 +659,7 @@
|
|
|
659
659
|
{
|
|
660
660
|
"abstract": true,
|
|
661
661
|
"docs": {
|
|
662
|
-
"see": "https://typedoc.org/
|
|
662
|
+
"see": "https://typedoc.org/documents/Options.Input.html#excludeprotected",
|
|
663
663
|
"stability": "stable",
|
|
664
664
|
"summary": "Prevent protected members from being included in the generated documentation."
|
|
665
665
|
},
|
|
@@ -677,9 +677,9 @@
|
|
|
677
677
|
{
|
|
678
678
|
"abstract": true,
|
|
679
679
|
"docs": {
|
|
680
|
-
"see": "https://typedoc.org/
|
|
680
|
+
"see": "https://typedoc.org/documents/Options.Input.html#externalpattern",
|
|
681
681
|
"stability": "stable",
|
|
682
|
-
"summary": "
|
|
682
|
+
"summary": "Define patterns for files that should be considered external."
|
|
683
683
|
},
|
|
684
684
|
"immutable": true,
|
|
685
685
|
"locationInModule": {
|
|
@@ -700,9 +700,9 @@
|
|
|
700
700
|
{
|
|
701
701
|
"abstract": true,
|
|
702
702
|
"docs": {
|
|
703
|
-
"see": "https://typedoc.org/
|
|
703
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#externalsymbollinkmappings",
|
|
704
704
|
"stability": "stable",
|
|
705
|
-
"summary": "
|
|
705
|
+
"summary": "Define custom mappings for symbols in external packages."
|
|
706
706
|
},
|
|
707
707
|
"immutable": true,
|
|
708
708
|
"locationInModule": {
|
|
@@ -728,7 +728,7 @@
|
|
|
728
728
|
{
|
|
729
729
|
"abstract": true,
|
|
730
730
|
"docs": {
|
|
731
|
-
"see": "https://typedoc.org/
|
|
731
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#gitremote",
|
|
732
732
|
"stability": "stable",
|
|
733
733
|
"summary": "Specify the git remote that should be used to link to source files."
|
|
734
734
|
},
|
|
@@ -746,7 +746,7 @@
|
|
|
746
746
|
{
|
|
747
747
|
"abstract": true,
|
|
748
748
|
"docs": {
|
|
749
|
-
"see": "https://typedoc.org/
|
|
749
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#gitrevision",
|
|
750
750
|
"stability": "stable",
|
|
751
751
|
"summary": "Specify the git revision that should be used to link to source files."
|
|
752
752
|
},
|
|
@@ -764,9 +764,9 @@
|
|
|
764
764
|
{
|
|
765
765
|
"abstract": true,
|
|
766
766
|
"docs": {
|
|
767
|
-
"see": "https://typedoc.org/
|
|
767
|
+
"see": "https://typedoc.org/documents/Options.Output.html#hidegenerator",
|
|
768
768
|
"stability": "stable",
|
|
769
|
-
"summary": "
|
|
769
|
+
"summary": "Do not print the TypeDoc link at the end of the page."
|
|
770
770
|
},
|
|
771
771
|
"immutable": true,
|
|
772
772
|
"locationInModule": {
|
|
@@ -782,9 +782,9 @@
|
|
|
782
782
|
{
|
|
783
783
|
"abstract": true,
|
|
784
784
|
"docs": {
|
|
785
|
-
"see": "https://typedoc.org/
|
|
785
|
+
"see": "https://typedoc.org/documents/Options.Output.html#hideparametertypesintitle",
|
|
786
786
|
"stability": "stable",
|
|
787
|
-
"summary": "
|
|
787
|
+
"summary": "Hide parameter types in the signature."
|
|
788
788
|
},
|
|
789
789
|
"immutable": true,
|
|
790
790
|
"locationInModule": {
|
|
@@ -800,7 +800,7 @@
|
|
|
800
800
|
{
|
|
801
801
|
"abstract": true,
|
|
802
802
|
"docs": {
|
|
803
|
-
"see": "https://typedoc.org/
|
|
803
|
+
"see": "https://typedoc.org/documents/Options.Output.html#includes",
|
|
804
804
|
"stability": "stable",
|
|
805
805
|
"summary": "Specify the location to look for included documents."
|
|
806
806
|
},
|
|
@@ -818,9 +818,9 @@
|
|
|
818
818
|
{
|
|
819
819
|
"abstract": true,
|
|
820
820
|
"docs": {
|
|
821
|
-
"see": "https://typedoc.org/
|
|
821
|
+
"see": "https://typedoc.org/documents/Options.Validation.html#intentionallynotexported",
|
|
822
822
|
"stability": "stable",
|
|
823
|
-
"summary": "
|
|
823
|
+
"summary": "A list of types that should not produce warnings when not being exported."
|
|
824
824
|
},
|
|
825
825
|
"immutable": true,
|
|
826
826
|
"locationInModule": {
|
|
@@ -841,7 +841,7 @@
|
|
|
841
841
|
{
|
|
842
842
|
"abstract": true,
|
|
843
843
|
"docs": {
|
|
844
|
-
"see": "https://typedoc.org/
|
|
844
|
+
"see": "https://typedoc.org/documents/Options.Output.html#json",
|
|
845
845
|
"stability": "stable",
|
|
846
846
|
"summary": "Specify the location the documentation should be written to."
|
|
847
847
|
},
|
|
@@ -859,7 +859,7 @@
|
|
|
859
859
|
{
|
|
860
860
|
"abstract": true,
|
|
861
861
|
"docs": {
|
|
862
|
-
"see": "https://typedoc.org/
|
|
862
|
+
"see": "https://typedoc.org/documents/Options.Other.html#loglevel",
|
|
863
863
|
"stability": "stable",
|
|
864
864
|
"summary": "Specify the logger that should be used."
|
|
865
865
|
},
|
|
@@ -877,7 +877,7 @@
|
|
|
877
877
|
{
|
|
878
878
|
"abstract": true,
|
|
879
879
|
"docs": {
|
|
880
|
-
"see": "https://typedoc.org/
|
|
880
|
+
"see": "https://typedoc.org/documents/Options.Output.html#media",
|
|
881
881
|
"stability": "stable",
|
|
882
882
|
"summary": "Specify the location with media files that should be copied to the output directory."
|
|
883
883
|
},
|
|
@@ -895,7 +895,7 @@
|
|
|
895
895
|
{
|
|
896
896
|
"abstract": true,
|
|
897
897
|
"docs": {
|
|
898
|
-
"see": "https://typedoc.org/
|
|
898
|
+
"see": "https://typedoc.org/documents/Options.Output.html#name",
|
|
899
899
|
"stability": "stable",
|
|
900
900
|
"summary": "Set the name of the project that will be used in the header of the template."
|
|
901
901
|
},
|
|
@@ -913,7 +913,7 @@
|
|
|
913
913
|
{
|
|
914
914
|
"abstract": true,
|
|
915
915
|
"docs": {
|
|
916
|
-
"see": "https://typedoc.org/
|
|
916
|
+
"see": "https://typedoc.org/documents/Options.Output.html#out",
|
|
917
917
|
"stability": "stable",
|
|
918
918
|
"summary": "Specifies the output directory the documentation should be written to."
|
|
919
919
|
},
|
|
@@ -931,7 +931,7 @@
|
|
|
931
931
|
{
|
|
932
932
|
"abstract": true,
|
|
933
933
|
"docs": {
|
|
934
|
-
"see": "https://typedoc.org/
|
|
934
|
+
"see": "https://typedoc.org/documents/Options.Input.html#packagejson",
|
|
935
935
|
"stability": "stable",
|
|
936
936
|
"summary": "Specify the package.json file that should be used to determine the package name."
|
|
937
937
|
},
|
|
@@ -949,7 +949,7 @@
|
|
|
949
949
|
{
|
|
950
950
|
"abstract": true,
|
|
951
951
|
"docs": {
|
|
952
|
-
"see": "https://typedoc.org/
|
|
952
|
+
"see": "https://typedoc.org/documents/Options.Input.html#readme",
|
|
953
953
|
"stability": "stable",
|
|
954
954
|
"summary": "Specify the readme file that should be displayed on the index page."
|
|
955
955
|
},
|
|
@@ -967,9 +967,9 @@
|
|
|
967
967
|
{
|
|
968
968
|
"abstract": true,
|
|
969
969
|
"docs": {
|
|
970
|
-
"see": "https://typedoc.org/
|
|
970
|
+
"see": "https://typedoc.org/documents/Options.Validation.html#requiredtobedocumented",
|
|
971
971
|
"stability": "stable",
|
|
972
|
-
"summary": "Specify the
|
|
972
|
+
"summary": "Specify the type of reflections that must be documented."
|
|
973
973
|
},
|
|
974
974
|
"immutable": true,
|
|
975
975
|
"locationInModule": {
|
|
@@ -990,7 +990,7 @@
|
|
|
990
990
|
{
|
|
991
991
|
"abstract": true,
|
|
992
992
|
"docs": {
|
|
993
|
-
"see": "https://typedoc.org/
|
|
993
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#searchcategoryboosts",
|
|
994
994
|
"stability": "stable",
|
|
995
995
|
"summary": "Specify the search category boosts."
|
|
996
996
|
},
|
|
@@ -1013,7 +1013,7 @@
|
|
|
1013
1013
|
{
|
|
1014
1014
|
"abstract": true,
|
|
1015
1015
|
"docs": {
|
|
1016
|
-
"see": "https://typedoc.org/
|
|
1016
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#searchgroupboosts",
|
|
1017
1017
|
"stability": "stable",
|
|
1018
1018
|
"summary": "Specify the search group boosts."
|
|
1019
1019
|
},
|
|
@@ -1036,9 +1036,9 @@
|
|
|
1036
1036
|
{
|
|
1037
1037
|
"abstract": true,
|
|
1038
1038
|
"docs": {
|
|
1039
|
-
"see": "https://typedoc.org/
|
|
1039
|
+
"see": "https://typedoc.org/documents/Options.Output.html#searchincomments",
|
|
1040
1040
|
"stability": "stable",
|
|
1041
|
-
"summary": "
|
|
1041
|
+
"summary": "If set, the search index will also include comments."
|
|
1042
1042
|
},
|
|
1043
1043
|
"immutable": true,
|
|
1044
1044
|
"locationInModule": {
|
|
@@ -1054,9 +1054,9 @@
|
|
|
1054
1054
|
{
|
|
1055
1055
|
"abstract": true,
|
|
1056
1056
|
"docs": {
|
|
1057
|
-
"see": "https://typedoc.org/
|
|
1057
|
+
"see": "https://typedoc.org/documents/Options.Output.html#searchindocuments",
|
|
1058
1058
|
"stability": "stable",
|
|
1059
|
-
"summary": "
|
|
1059
|
+
"summary": "If set, the search index will also include documents."
|
|
1060
1060
|
},
|
|
1061
1061
|
"immutable": true,
|
|
1062
1062
|
"locationInModule": {
|
|
@@ -1072,7 +1072,7 @@
|
|
|
1072
1072
|
{
|
|
1073
1073
|
"abstract": true,
|
|
1074
1074
|
"docs": {
|
|
1075
|
-
"see": "https://typedoc.org/
|
|
1075
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#sort",
|
|
1076
1076
|
"stability": "stable",
|
|
1077
1077
|
"summary": "Specify the sort strategy for documented values."
|
|
1078
1078
|
},
|
|
@@ -1095,7 +1095,7 @@
|
|
|
1095
1095
|
{
|
|
1096
1096
|
"abstract": true,
|
|
1097
1097
|
"docs": {
|
|
1098
|
-
"see": "https://typedoc.org/
|
|
1098
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#sortentrypoints",
|
|
1099
1099
|
"stability": "stable",
|
|
1100
1100
|
"summary": "Specify the sort strategy for static and instance members."
|
|
1101
1101
|
},
|
|
@@ -1113,16 +1113,16 @@
|
|
|
1113
1113
|
{
|
|
1114
1114
|
"abstract": true,
|
|
1115
1115
|
"docs": {
|
|
1116
|
-
"see": "https://typedoc.org/
|
|
1116
|
+
"see": "https://typedoc.org/documents/Options.Input.html#sourcelinktemplate",
|
|
1117
1117
|
"stability": "stable",
|
|
1118
|
-
"summary": "Specify
|
|
1118
|
+
"summary": "Specify a link template to be used when generating source urls."
|
|
1119
1119
|
},
|
|
1120
1120
|
"immutable": true,
|
|
1121
1121
|
"locationInModule": {
|
|
1122
1122
|
"filename": "src/typedoc-config.ts",
|
|
1123
1123
|
"line": 229
|
|
1124
1124
|
},
|
|
1125
|
-
"name": "
|
|
1125
|
+
"name": "sourceLinkTemplate",
|
|
1126
1126
|
"optional": true,
|
|
1127
1127
|
"type": {
|
|
1128
1128
|
"primitive": "string"
|
|
@@ -1131,7 +1131,7 @@
|
|
|
1131
1131
|
{
|
|
1132
1132
|
"abstract": true,
|
|
1133
1133
|
"docs": {
|
|
1134
|
-
"see": "https://typedoc.org/
|
|
1134
|
+
"see": "https://typedoc.org/documents/Options.Output.html#theme",
|
|
1135
1135
|
"stability": "stable",
|
|
1136
1136
|
"summary": "Specify a theme name to use."
|
|
1137
1137
|
},
|
|
@@ -1149,9 +1149,9 @@
|
|
|
1149
1149
|
{
|
|
1150
1150
|
"abstract": true,
|
|
1151
1151
|
"docs": {
|
|
1152
|
-
"see": "https://typedoc.org/
|
|
1152
|
+
"see": "https://typedoc.org/documents/Options.Validation.html#treatvalidationwarningsaserrors",
|
|
1153
1153
|
"stability": "stable",
|
|
1154
|
-
"summary": "
|
|
1154
|
+
"summary": "If set, validation warnings will be treated as errors."
|
|
1155
1155
|
},
|
|
1156
1156
|
"immutable": true,
|
|
1157
1157
|
"locationInModule": {
|
|
@@ -1167,9 +1167,9 @@
|
|
|
1167
1167
|
{
|
|
1168
1168
|
"abstract": true,
|
|
1169
1169
|
"docs": {
|
|
1170
|
-
"see": "https://typedoc.org/
|
|
1170
|
+
"see": "https://typedoc.org/documents/Options.Validation.html#treatwarningsaserrors",
|
|
1171
1171
|
"stability": "stable",
|
|
1172
|
-
"summary": "
|
|
1172
|
+
"summary": "If set, warnings will be treated as errors."
|
|
1173
1173
|
},
|
|
1174
1174
|
"immutable": true,
|
|
1175
1175
|
"locationInModule": {
|
|
@@ -1185,7 +1185,7 @@
|
|
|
1185
1185
|
{
|
|
1186
1186
|
"abstract": true,
|
|
1187
1187
|
"docs": {
|
|
1188
|
-
"see": "https://typedoc.org/
|
|
1188
|
+
"see": "https://typedoc.org/documents/Options.Input.html#tsbuildinfo",
|
|
1189
1189
|
"stability": "stable",
|
|
1190
1190
|
"summary": "Specify the location and filename a .tsbuildinfo file should be written to."
|
|
1191
1191
|
},
|
|
@@ -1203,7 +1203,7 @@
|
|
|
1203
1203
|
{
|
|
1204
1204
|
"abstract": true,
|
|
1205
1205
|
"docs": {
|
|
1206
|
-
"see": "https://typedoc.org/
|
|
1206
|
+
"see": "https://typedoc.org/documents/Options.Input.html#tsconfig",
|
|
1207
1207
|
"stability": "stable",
|
|
1208
1208
|
"summary": "Specify a TypeScript config file that should be used to load TypeScript configuration."
|
|
1209
1209
|
},
|
|
@@ -1221,9 +1221,9 @@
|
|
|
1221
1221
|
{
|
|
1222
1222
|
"abstract": true,
|
|
1223
1223
|
"docs": {
|
|
1224
|
-
"see": "https://typedoc.org/
|
|
1224
|
+
"see": "https://typedoc.org/documents/Options.Validation.html",
|
|
1225
1225
|
"stability": "stable",
|
|
1226
|
-
"summary": "Specify
|
|
1226
|
+
"summary": "Specify validation options."
|
|
1227
1227
|
},
|
|
1228
1228
|
"immutable": true,
|
|
1229
1229
|
"locationInModule": {
|
|
@@ -1249,7 +1249,7 @@
|
|
|
1249
1249
|
"kind": "interface",
|
|
1250
1250
|
"locationInModule": {
|
|
1251
1251
|
"filename": "src/index.ts",
|
|
1252
|
-
"line":
|
|
1252
|
+
"line": 20
|
|
1253
1253
|
},
|
|
1254
1254
|
"name": "TypeDocOptions",
|
|
1255
1255
|
"properties": [
|
|
@@ -1263,7 +1263,7 @@
|
|
|
1263
1263
|
"immutable": true,
|
|
1264
1264
|
"locationInModule": {
|
|
1265
1265
|
"filename": "src/index.ts",
|
|
1266
|
-
"line":
|
|
1266
|
+
"line": 33
|
|
1267
1267
|
},
|
|
1268
1268
|
"name": "typeDocConfig",
|
|
1269
1269
|
"optional": true,
|
|
@@ -1281,7 +1281,7 @@
|
|
|
1281
1281
|
"immutable": true,
|
|
1282
1282
|
"locationInModule": {
|
|
1283
1283
|
"filename": "src/index.ts",
|
|
1284
|
-
"line":
|
|
1284
|
+
"line": 26
|
|
1285
1285
|
},
|
|
1286
1286
|
"name": "version",
|
|
1287
1287
|
"optional": true,
|
|
@@ -1296,7 +1296,7 @@
|
|
|
1296
1296
|
"assembly": "@nikovirtala/projen-typedoc",
|
|
1297
1297
|
"datatype": true,
|
|
1298
1298
|
"docs": {
|
|
1299
|
-
"see": "https://typedoc.org/
|
|
1299
|
+
"see": "https://typedoc.org/documents/Options.Validation.html",
|
|
1300
1300
|
"stability": "stable",
|
|
1301
1301
|
"summary": "Validation options."
|
|
1302
1302
|
},
|
|
@@ -1365,7 +1365,7 @@
|
|
|
1365
1365
|
"@nikovirtala/projen-typedoc.Visibility": {
|
|
1366
1366
|
"assembly": "@nikovirtala/projen-typedoc",
|
|
1367
1367
|
"docs": {
|
|
1368
|
-
"see": "https://typedoc.org/
|
|
1368
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#defaultvisibility",
|
|
1369
1369
|
"stability": "stable",
|
|
1370
1370
|
"summary": "Specifies the default visibility for members without a visibility tag."
|
|
1371
1371
|
},
|
|
@@ -1399,6 +1399,6 @@
|
|
|
1399
1399
|
"symbolId": "src/typedoc-config:Visibility"
|
|
1400
1400
|
}
|
|
1401
1401
|
},
|
|
1402
|
-
"version": "
|
|
1403
|
-
"fingerprint": "
|
|
1402
|
+
"version": "1.0.0",
|
|
1403
|
+
"fingerprint": "gF/hkkg+PBvOLIn5GdBwa50LedtT29zG20o2LCLZ2go="
|
|
1404
1404
|
}
|