@nikovirtala/projen-typedoc 0.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 ADDED
@@ -0,0 +1,1404 @@
1
+ {
2
+ "author": {
3
+ "email": "niko.virtala@hey.com",
4
+ "name": "Niko Virtala",
5
+ "roles": [
6
+ "author"
7
+ ]
8
+ },
9
+ "dependencies": {
10
+ "constructs": "^10.4.3",
11
+ "projen": "^0.98.10"
12
+ },
13
+ "dependencyClosure": {
14
+ "constructs": {
15
+ "targets": {
16
+ "dotnet": {
17
+ "namespace": "Constructs",
18
+ "packageId": "Constructs"
19
+ },
20
+ "go": {
21
+ "moduleName": "github.com/aws/constructs-go"
22
+ },
23
+ "java": {
24
+ "maven": {
25
+ "artifactId": "constructs",
26
+ "groupId": "software.constructs"
27
+ },
28
+ "package": "software.constructs"
29
+ },
30
+ "js": {
31
+ "npm": "constructs"
32
+ },
33
+ "python": {
34
+ "distName": "constructs",
35
+ "module": "constructs"
36
+ }
37
+ }
38
+ },
39
+ "projen": {
40
+ "submodules": {
41
+ "projen.awscdk": {},
42
+ "projen.build": {},
43
+ "projen.cdk": {},
44
+ "projen.cdk8s": {},
45
+ "projen.cdktf": {},
46
+ "projen.circleci": {},
47
+ "projen.github": {},
48
+ "projen.github.workflows": {},
49
+ "projen.gitlab": {},
50
+ "projen.java": {},
51
+ "projen.javascript": {},
52
+ "projen.javascript.biome_config": {},
53
+ "projen.python": {},
54
+ "projen.release": {},
55
+ "projen.typescript": {},
56
+ "projen.vscode": {},
57
+ "projen.web": {}
58
+ },
59
+ "targets": {
60
+ "go": {
61
+ "moduleName": "github.com/projen/projen-go"
62
+ },
63
+ "java": {
64
+ "maven": {
65
+ "artifactId": "projen",
66
+ "groupId": "io.github.cdklabs"
67
+ },
68
+ "package": "io.github.cdklabs.projen"
69
+ },
70
+ "js": {
71
+ "npm": "projen"
72
+ },
73
+ "python": {
74
+ "distName": "projen",
75
+ "module": "projen"
76
+ }
77
+ }
78
+ }
79
+ },
80
+ "description": "TypeDoc component for projen projects",
81
+ "docs": {
82
+ "stability": "stable"
83
+ },
84
+ "homepage": "https://github.com/nikovirtala/projen-typedoc.git",
85
+ "jsiiVersion": "5.9.11 (build e3d2007)",
86
+ "license": "MIT",
87
+ "metadata": {
88
+ "jsii": {
89
+ "pacmak": {
90
+ "hasDefaultInterfaces": true
91
+ }
92
+ },
93
+ "tscRootDir": "src"
94
+ },
95
+ "name": "@nikovirtala/projen-typedoc",
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"
98
+ },
99
+ "repository": {
100
+ "type": "git",
101
+ "url": "https://github.com/nikovirtala/projen-typedoc.git"
102
+ },
103
+ "schema": "jsii/0.10.0",
104
+ "targets": {
105
+ "js": {
106
+ "npm": "@nikovirtala/projen-typedoc"
107
+ }
108
+ },
109
+ "types": {
110
+ "@nikovirtala/projen-typedoc.CommentStyle": {
111
+ "assembly": "@nikovirtala/projen-typedoc",
112
+ "docs": {
113
+ "see": "https://typedoc.org/options/comments/#commentstyle",
114
+ "stability": "stable",
115
+ "summary": "Specifies the documentation mode TypeDoc should use."
116
+ },
117
+ "fqn": "@nikovirtala/projen-typedoc.CommentStyle",
118
+ "kind": "enum",
119
+ "locationInModule": {
120
+ "filename": "src/typedoc-config.ts",
121
+ "line": 439
122
+ },
123
+ "members": [
124
+ {
125
+ "docs": {
126
+ "stability": "stable"
127
+ },
128
+ "name": "JSDOC"
129
+ },
130
+ {
131
+ "docs": {
132
+ "stability": "stable"
133
+ },
134
+ "name": "BLOCK"
135
+ },
136
+ {
137
+ "docs": {
138
+ "stability": "stable"
139
+ },
140
+ "name": "LINE"
141
+ },
142
+ {
143
+ "docs": {
144
+ "stability": "stable"
145
+ },
146
+ "name": "ALL"
147
+ }
148
+ ],
149
+ "name": "CommentStyle",
150
+ "symbolId": "src/typedoc-config:CommentStyle"
151
+ },
152
+ "@nikovirtala/projen-typedoc.EntryPointStrategy": {
153
+ "assembly": "@nikovirtala/projen-typedoc",
154
+ "docs": {
155
+ "see": "https://typedoc.org/options/input/#entrypointstrategy",
156
+ "stability": "stable",
157
+ "summary": "Specifies the strategy to be used to convert entry points into documentation."
158
+ },
159
+ "fqn": "@nikovirtala/projen-typedoc.EntryPointStrategy",
160
+ "kind": "enum",
161
+ "locationInModule": {
162
+ "filename": "src/typedoc-config.ts",
163
+ "line": 402
164
+ },
165
+ "members": [
166
+ {
167
+ "docs": {
168
+ "stability": "stable",
169
+ "summary": "Expects all entry points to be contained within a single package."
170
+ },
171
+ "name": "RESOLVE"
172
+ },
173
+ {
174
+ "docs": {
175
+ "stability": "stable",
176
+ "summary": "Expects all entry points to be top-level directories."
177
+ },
178
+ "name": "EXPAND"
179
+ },
180
+ {
181
+ "docs": {
182
+ "stability": "stable",
183
+ "summary": "Expects all entry points to be individual files."
184
+ },
185
+ "name": "PACKAGES"
186
+ },
187
+ {
188
+ "docs": {
189
+ "stability": "stable",
190
+ "summary": "Merges multiple projects into a single documentation site."
191
+ },
192
+ "name": "MERGE"
193
+ }
194
+ ],
195
+ "name": "EntryPointStrategy",
196
+ "symbolId": "src/typedoc-config:EntryPointStrategy"
197
+ },
198
+ "@nikovirtala/projen-typedoc.LogLevel": {
199
+ "assembly": "@nikovirtala/projen-typedoc",
200
+ "docs": {
201
+ "see": "https://typedoc.org/options/other/#loglevel",
202
+ "stability": "stable",
203
+ "summary": "Specifies the logger that should be used."
204
+ },
205
+ "fqn": "@nikovirtala/projen-typedoc.LogLevel",
206
+ "kind": "enum",
207
+ "locationInModule": {
208
+ "filename": "src/typedoc-config.ts",
209
+ "line": 426
210
+ },
211
+ "members": [
212
+ {
213
+ "docs": {
214
+ "stability": "stable"
215
+ },
216
+ "name": "VERBOSE"
217
+ },
218
+ {
219
+ "docs": {
220
+ "stability": "stable"
221
+ },
222
+ "name": "INFO"
223
+ },
224
+ {
225
+ "docs": {
226
+ "stability": "stable"
227
+ },
228
+ "name": "WARN"
229
+ },
230
+ {
231
+ "docs": {
232
+ "stability": "stable"
233
+ },
234
+ "name": "ERROR"
235
+ },
236
+ {
237
+ "docs": {
238
+ "stability": "stable"
239
+ },
240
+ "name": "NONE"
241
+ }
242
+ ],
243
+ "name": "LogLevel",
244
+ "symbolId": "src/typedoc-config:LogLevel"
245
+ },
246
+ "@nikovirtala/projen-typedoc.TypeDoc": {
247
+ "assembly": "@nikovirtala/projen-typedoc",
248
+ "base": "projen.Component",
249
+ "docs": {
250
+ "stability": "stable",
251
+ "summary": "TypeDoc component for projen projects."
252
+ },
253
+ "fqn": "@nikovirtala/projen-typedoc.TypeDoc",
254
+ "initializer": {
255
+ "docs": {
256
+ "stability": "stable"
257
+ },
258
+ "locationInModule": {
259
+ "filename": "src/index.ts",
260
+ "line": 56
261
+ },
262
+ "parameters": [
263
+ {
264
+ "name": "project",
265
+ "type": {
266
+ "fqn": "projen.javascript.NodeProject"
267
+ }
268
+ },
269
+ {
270
+ "name": "options",
271
+ "optional": true,
272
+ "type": {
273
+ "fqn": "@nikovirtala/projen-typedoc.TypeDocOptions"
274
+ }
275
+ }
276
+ ]
277
+ },
278
+ "kind": "class",
279
+ "locationInModule": {
280
+ "filename": "src/index.ts",
281
+ "line": 38
282
+ },
283
+ "methods": [
284
+ {
285
+ "docs": {
286
+ "stability": "stable"
287
+ },
288
+ "locationInModule": {
289
+ "filename": "src/index.ts",
290
+ "line": 39
291
+ },
292
+ "name": "of",
293
+ "parameters": [
294
+ {
295
+ "name": "project",
296
+ "type": {
297
+ "fqn": "projen.Project"
298
+ }
299
+ }
300
+ ],
301
+ "returns": {
302
+ "optional": true,
303
+ "type": {
304
+ "fqn": "@nikovirtala/projen-typedoc.TypeDoc"
305
+ }
306
+ },
307
+ "static": true
308
+ }
309
+ ],
310
+ "name": "TypeDoc",
311
+ "properties": [
312
+ {
313
+ "docs": {
314
+ "stability": "stable",
315
+ "summary": "TypeDoc configuration file."
316
+ },
317
+ "immutable": true,
318
+ "locationInModule": {
319
+ "filename": "src/index.ts",
320
+ "line": 54
321
+ },
322
+ "name": "file",
323
+ "type": {
324
+ "fqn": "projen.JsonFile"
325
+ }
326
+ },
327
+ {
328
+ "docs": {
329
+ "stability": "stable",
330
+ "summary": "TypeDoc task."
331
+ },
332
+ "immutable": true,
333
+ "locationInModule": {
334
+ "filename": "src/index.ts",
335
+ "line": 49
336
+ },
337
+ "name": "task",
338
+ "type": {
339
+ "fqn": "projen.Task"
340
+ }
341
+ }
342
+ ],
343
+ "symbolId": "src/index:TypeDoc"
344
+ },
345
+ "@nikovirtala/projen-typedoc.TypeDocConfiguration": {
346
+ "assembly": "@nikovirtala/projen-typedoc",
347
+ "datatype": true,
348
+ "docs": {
349
+ "see": "https://typedoc.org/options/",
350
+ "stability": "stable",
351
+ "summary": "TypeDoc configuration."
352
+ },
353
+ "fqn": "@nikovirtala/projen-typedoc.TypeDocConfiguration",
354
+ "kind": "interface",
355
+ "locationInModule": {
356
+ "filename": "src/typedoc-config.ts",
357
+ "line": 6
358
+ },
359
+ "name": "TypeDocConfiguration",
360
+ "properties": [
361
+ {
362
+ "abstract": true,
363
+ "docs": {
364
+ "see": "https://typedoc.org/options/output/#basepath",
365
+ "stability": "stable",
366
+ "summary": "Specify the base path for all urls."
367
+ },
368
+ "immutable": true,
369
+ "locationInModule": {
370
+ "filename": "src/typedoc-config.ts",
371
+ "line": 82
372
+ },
373
+ "name": "basePath",
374
+ "optional": true,
375
+ "type": {
376
+ "primitive": "string"
377
+ }
378
+ },
379
+ {
380
+ "abstract": true,
381
+ "docs": {
382
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
383
+ "stability": "stable",
384
+ "summary": "Specify the base URL for links to source files."
385
+ },
386
+ "immutable": true,
387
+ "locationInModule": {
388
+ "filename": "src/typedoc-config.ts",
389
+ "line": 264
390
+ },
391
+ "name": "cacheBust",
392
+ "optional": true,
393
+ "type": {
394
+ "primitive": "boolean"
395
+ }
396
+ },
397
+ {
398
+ "abstract": true,
399
+ "docs": {
400
+ "see": "https://typedoc.org/options/organization/#categorizebygroup",
401
+ "stability": "stable",
402
+ "summary": "Specify the categories that will be used to group reflections."
403
+ },
404
+ "immutable": true,
405
+ "locationInModule": {
406
+ "filename": "src/typedoc-config.ts",
407
+ "line": 180
408
+ },
409
+ "name": "categorizeByGroup",
410
+ "optional": true,
411
+ "type": {
412
+ "primitive": "boolean"
413
+ }
414
+ },
415
+ {
416
+ "abstract": true,
417
+ "docs": {
418
+ "see": "https://typedoc.org/options/output/#cleanoutputdir",
419
+ "stability": "stable",
420
+ "summary": "Prevent TypeDoc from cleaning the output directory specified with --out."
421
+ },
422
+ "immutable": true,
423
+ "locationInModule": {
424
+ "filename": "src/typedoc-config.ts",
425
+ "line": 96
426
+ },
427
+ "name": "cleanOutputDir",
428
+ "optional": true,
429
+ "type": {
430
+ "primitive": "boolean"
431
+ }
432
+ },
433
+ {
434
+ "abstract": true,
435
+ "docs": {
436
+ "see": "https://typedoc.org/options/comments/#commentstyle",
437
+ "stability": "stable",
438
+ "summary": "Specify the documentation mode TypeDoc should use."
439
+ },
440
+ "immutable": true,
441
+ "locationInModule": {
442
+ "filename": "src/typedoc-config.ts",
443
+ "line": 152
444
+ },
445
+ "name": "commentStyle",
446
+ "optional": true,
447
+ "type": {
448
+ "fqn": "@nikovirtala/projen-typedoc.CommentStyle"
449
+ }
450
+ },
451
+ {
452
+ "abstract": true,
453
+ "docs": {
454
+ "see": "https://typedoc.org/options/organization/#defaultcategory",
455
+ "stability": "stable",
456
+ "summary": "Specify the default category for reflections without a category."
457
+ },
458
+ "immutable": true,
459
+ "locationInModule": {
460
+ "filename": "src/typedoc-config.ts",
461
+ "line": 166
462
+ },
463
+ "name": "defaultCategory",
464
+ "optional": true,
465
+ "type": {
466
+ "primitive": "string"
467
+ }
468
+ },
469
+ {
470
+ "abstract": true,
471
+ "docs": {
472
+ "see": "https://typedoc.org/options/organization/#defaultgroup",
473
+ "stability": "stable",
474
+ "summary": "Specify the default group for reflections without a group."
475
+ },
476
+ "immutable": true,
477
+ "locationInModule": {
478
+ "filename": "src/typedoc-config.ts",
479
+ "line": 173
480
+ },
481
+ "name": "defaultGroup",
482
+ "optional": true,
483
+ "type": {
484
+ "primitive": "string"
485
+ }
486
+ },
487
+ {
488
+ "abstract": true,
489
+ "docs": {
490
+ "see": "https://typedoc.org/options/comments/#defaultvisibility",
491
+ "stability": "stable",
492
+ "summary": "Specify the default visibility for members without a visibility tag."
493
+ },
494
+ "immutable": true,
495
+ "locationInModule": {
496
+ "filename": "src/typedoc-config.ts",
497
+ "line": 159
498
+ },
499
+ "name": "defaultVisibility",
500
+ "optional": true,
501
+ "type": {
502
+ "fqn": "@nikovirtala/projen-typedoc.Visibility"
503
+ }
504
+ },
505
+ {
506
+ "abstract": true,
507
+ "docs": {
508
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
509
+ "stability": "stable",
510
+ "summary": "Specify the base URL for links to source files."
511
+ },
512
+ "immutable": true,
513
+ "locationInModule": {
514
+ "filename": "src/typedoc-config.ts",
515
+ "line": 243
516
+ },
517
+ "name": "disableGit",
518
+ "optional": true,
519
+ "type": {
520
+ "primitive": "boolean"
521
+ }
522
+ },
523
+ {
524
+ "abstract": true,
525
+ "docs": {
526
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
527
+ "stability": "stable",
528
+ "summary": "Specify the base URL for links to source files."
529
+ },
530
+ "immutable": true,
531
+ "locationInModule": {
532
+ "filename": "src/typedoc-config.ts",
533
+ "line": 236
534
+ },
535
+ "name": "disableSources",
536
+ "optional": true,
537
+ "type": {
538
+ "primitive": "boolean"
539
+ }
540
+ },
541
+ {
542
+ "abstract": true,
543
+ "docs": {
544
+ "see": "https://typedoc.org/options/input/#entrypoints",
545
+ "stability": "stable",
546
+ "summary": "Specifies the entry points to be documented by TypeDoc."
547
+ },
548
+ "immutable": true,
549
+ "locationInModule": {
550
+ "filename": "src/typedoc-config.ts",
551
+ "line": 12
552
+ },
553
+ "name": "entryPoints",
554
+ "optional": true,
555
+ "type": {
556
+ "collection": {
557
+ "elementtype": {
558
+ "primitive": "string"
559
+ },
560
+ "kind": "array"
561
+ }
562
+ }
563
+ },
564
+ {
565
+ "abstract": true,
566
+ "docs": {
567
+ "see": "https://typedoc.org/options/input/#entrypointstrategy",
568
+ "stability": "stable",
569
+ "summary": "Specifies the strategy to be used to convert entry points into documentation."
570
+ },
571
+ "immutable": true,
572
+ "locationInModule": {
573
+ "filename": "src/typedoc-config.ts",
574
+ "line": 19
575
+ },
576
+ "name": "entryPointStrategy",
577
+ "optional": true,
578
+ "type": {
579
+ "fqn": "@nikovirtala/projen-typedoc.EntryPointStrategy"
580
+ }
581
+ },
582
+ {
583
+ "abstract": true,
584
+ "docs": {
585
+ "see": "https://typedoc.org/options/input/#exclude",
586
+ "stability": "stable",
587
+ "summary": "Define patterns to be excluded when expanding directories."
588
+ },
589
+ "immutable": true,
590
+ "locationInModule": {
591
+ "filename": "src/typedoc-config.ts",
592
+ "line": 26
593
+ },
594
+ "name": "exclude",
595
+ "optional": true,
596
+ "type": {
597
+ "collection": {
598
+ "elementtype": {
599
+ "primitive": "string"
600
+ },
601
+ "kind": "array"
602
+ }
603
+ }
604
+ },
605
+ {
606
+ "abstract": true,
607
+ "docs": {
608
+ "see": "https://typedoc.org/options/input/#excludeexternals",
609
+ "stability": "stable",
610
+ "summary": "Prevent externally resolved symbols from being documented."
611
+ },
612
+ "immutable": true,
613
+ "locationInModule": {
614
+ "filename": "src/typedoc-config.ts",
615
+ "line": 33
616
+ },
617
+ "name": "excludeExternals",
618
+ "optional": true,
619
+ "type": {
620
+ "primitive": "boolean"
621
+ }
622
+ },
623
+ {
624
+ "abstract": true,
625
+ "docs": {
626
+ "see": "https://typedoc.org/options/input/#excludeinternal",
627
+ "stability": "stable",
628
+ "summary": "Prevent symbols that are not exported from being documented."
629
+ },
630
+ "immutable": true,
631
+ "locationInModule": {
632
+ "filename": "src/typedoc-config.ts",
633
+ "line": 54
634
+ },
635
+ "name": "excludeInternal",
636
+ "optional": true,
637
+ "type": {
638
+ "primitive": "boolean"
639
+ }
640
+ },
641
+ {
642
+ "abstract": true,
643
+ "docs": {
644
+ "see": "https://typedoc.org/options/input/#excludeprivate",
645
+ "stability": "stable",
646
+ "summary": "Prevent private members from being included in the generated documentation."
647
+ },
648
+ "immutable": true,
649
+ "locationInModule": {
650
+ "filename": "src/typedoc-config.ts",
651
+ "line": 40
652
+ },
653
+ "name": "excludePrivate",
654
+ "optional": true,
655
+ "type": {
656
+ "primitive": "boolean"
657
+ }
658
+ },
659
+ {
660
+ "abstract": true,
661
+ "docs": {
662
+ "see": "https://typedoc.org/options/input/#excludeprotected",
663
+ "stability": "stable",
664
+ "summary": "Prevent protected members from being included in the generated documentation."
665
+ },
666
+ "immutable": true,
667
+ "locationInModule": {
668
+ "filename": "src/typedoc-config.ts",
669
+ "line": 47
670
+ },
671
+ "name": "excludeProtected",
672
+ "optional": true,
673
+ "type": {
674
+ "primitive": "boolean"
675
+ }
676
+ },
677
+ {
678
+ "abstract": true,
679
+ "docs": {
680
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
681
+ "stability": "stable",
682
+ "summary": "Specify the base URL for links to source files."
683
+ },
684
+ "immutable": true,
685
+ "locationInModule": {
686
+ "filename": "src/typedoc-config.ts",
687
+ "line": 320
688
+ },
689
+ "name": "externalPattern",
690
+ "optional": true,
691
+ "type": {
692
+ "collection": {
693
+ "elementtype": {
694
+ "primitive": "string"
695
+ },
696
+ "kind": "array"
697
+ }
698
+ }
699
+ },
700
+ {
701
+ "abstract": true,
702
+ "docs": {
703
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
704
+ "stability": "stable",
705
+ "summary": "Specify the base URL for links to source files."
706
+ },
707
+ "immutable": true,
708
+ "locationInModule": {
709
+ "filename": "src/typedoc-config.ts",
710
+ "line": 327
711
+ },
712
+ "name": "externalSymbolLinkMappings",
713
+ "optional": true,
714
+ "type": {
715
+ "collection": {
716
+ "elementtype": {
717
+ "collection": {
718
+ "elementtype": {
719
+ "primitive": "string"
720
+ },
721
+ "kind": "map"
722
+ }
723
+ },
724
+ "kind": "map"
725
+ }
726
+ }
727
+ },
728
+ {
729
+ "abstract": true,
730
+ "docs": {
731
+ "see": "https://typedoc.org/options/comments/#gitremote",
732
+ "stability": "stable",
733
+ "summary": "Specify the git remote that should be used to link to source files."
734
+ },
735
+ "immutable": true,
736
+ "locationInModule": {
737
+ "filename": "src/typedoc-config.ts",
738
+ "line": 222
739
+ },
740
+ "name": "gitRemote",
741
+ "optional": true,
742
+ "type": {
743
+ "primitive": "string"
744
+ }
745
+ },
746
+ {
747
+ "abstract": true,
748
+ "docs": {
749
+ "see": "https://typedoc.org/options/comments/#gitrevision",
750
+ "stability": "stable",
751
+ "summary": "Specify the git revision that should be used to link to source files."
752
+ },
753
+ "immutable": true,
754
+ "locationInModule": {
755
+ "filename": "src/typedoc-config.ts",
756
+ "line": 215
757
+ },
758
+ "name": "gitRevision",
759
+ "optional": true,
760
+ "type": {
761
+ "primitive": "string"
762
+ }
763
+ },
764
+ {
765
+ "abstract": true,
766
+ "docs": {
767
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
768
+ "stability": "stable",
769
+ "summary": "Specify the base URL for links to source files."
770
+ },
771
+ "immutable": true,
772
+ "locationInModule": {
773
+ "filename": "src/typedoc-config.ts",
774
+ "line": 250
775
+ },
776
+ "name": "hideGenerator",
777
+ "optional": true,
778
+ "type": {
779
+ "primitive": "boolean"
780
+ }
781
+ },
782
+ {
783
+ "abstract": true,
784
+ "docs": {
785
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
786
+ "stability": "stable",
787
+ "summary": "Specify the base URL for links to source files."
788
+ },
789
+ "immutable": true,
790
+ "locationInModule": {
791
+ "filename": "src/typedoc-config.ts",
792
+ "line": 257
793
+ },
794
+ "name": "hideParameterTypesInTitle",
795
+ "optional": true,
796
+ "type": {
797
+ "primitive": "boolean"
798
+ }
799
+ },
800
+ {
801
+ "abstract": true,
802
+ "docs": {
803
+ "see": "https://typedoc.org/options/output/#includes",
804
+ "stability": "stable",
805
+ "summary": "Specify the location to look for included documents."
806
+ },
807
+ "immutable": true,
808
+ "locationInModule": {
809
+ "filename": "src/typedoc-config.ts",
810
+ "line": 103
811
+ },
812
+ "name": "includes",
813
+ "optional": true,
814
+ "type": {
815
+ "primitive": "string"
816
+ }
817
+ },
818
+ {
819
+ "abstract": true,
820
+ "docs": {
821
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
822
+ "stability": "stable",
823
+ "summary": "Specify the base URL for links to source files."
824
+ },
825
+ "immutable": true,
826
+ "locationInModule": {
827
+ "filename": "src/typedoc-config.ts",
828
+ "line": 313
829
+ },
830
+ "name": "intentionallyNotExported",
831
+ "optional": true,
832
+ "type": {
833
+ "collection": {
834
+ "elementtype": {
835
+ "primitive": "string"
836
+ },
837
+ "kind": "array"
838
+ }
839
+ }
840
+ },
841
+ {
842
+ "abstract": true,
843
+ "docs": {
844
+ "see": "https://typedoc.org/options/output/#json",
845
+ "stability": "stable",
846
+ "summary": "Specify the location the documentation should be written to."
847
+ },
848
+ "immutable": true,
849
+ "locationInModule": {
850
+ "filename": "src/typedoc-config.ts",
851
+ "line": 68
852
+ },
853
+ "name": "json",
854
+ "optional": true,
855
+ "type": {
856
+ "primitive": "string"
857
+ }
858
+ },
859
+ {
860
+ "abstract": true,
861
+ "docs": {
862
+ "see": "https://typedoc.org/options/other/#loglevel",
863
+ "stability": "stable",
864
+ "summary": "Specify the logger that should be used."
865
+ },
866
+ "immutable": true,
867
+ "locationInModule": {
868
+ "filename": "src/typedoc-config.ts",
869
+ "line": 131
870
+ },
871
+ "name": "logLevel",
872
+ "optional": true,
873
+ "type": {
874
+ "fqn": "@nikovirtala/projen-typedoc.LogLevel"
875
+ }
876
+ },
877
+ {
878
+ "abstract": true,
879
+ "docs": {
880
+ "see": "https://typedoc.org/options/output/#media",
881
+ "stability": "stable",
882
+ "summary": "Specify the location with media files that should be copied to the output directory."
883
+ },
884
+ "immutable": true,
885
+ "locationInModule": {
886
+ "filename": "src/typedoc-config.ts",
887
+ "line": 110
888
+ },
889
+ "name": "media",
890
+ "optional": true,
891
+ "type": {
892
+ "primitive": "string"
893
+ }
894
+ },
895
+ {
896
+ "abstract": true,
897
+ "docs": {
898
+ "see": "https://typedoc.org/options/output/#name",
899
+ "stability": "stable",
900
+ "summary": "Set the name of the project that will be used in the header of the template."
901
+ },
902
+ "immutable": true,
903
+ "locationInModule": {
904
+ "filename": "src/typedoc-config.ts",
905
+ "line": 89
906
+ },
907
+ "name": "name",
908
+ "optional": true,
909
+ "type": {
910
+ "primitive": "string"
911
+ }
912
+ },
913
+ {
914
+ "abstract": true,
915
+ "docs": {
916
+ "see": "https://typedoc.org/options/output/#out",
917
+ "stability": "stable",
918
+ "summary": "Specifies the output directory the documentation should be written to."
919
+ },
920
+ "immutable": true,
921
+ "locationInModule": {
922
+ "filename": "src/typedoc-config.ts",
923
+ "line": 61
924
+ },
925
+ "name": "out",
926
+ "optional": true,
927
+ "type": {
928
+ "primitive": "string"
929
+ }
930
+ },
931
+ {
932
+ "abstract": true,
933
+ "docs": {
934
+ "see": "https://typedoc.org/options/input/#packagejson",
935
+ "stability": "stable",
936
+ "summary": "Specify the package.json file that should be used to determine the package name."
937
+ },
938
+ "immutable": true,
939
+ "locationInModule": {
940
+ "filename": "src/typedoc-config.ts",
941
+ "line": 208
942
+ },
943
+ "name": "packageJson",
944
+ "optional": true,
945
+ "type": {
946
+ "primitive": "string"
947
+ }
948
+ },
949
+ {
950
+ "abstract": true,
951
+ "docs": {
952
+ "see": "https://typedoc.org/options/input/#readme",
953
+ "stability": "stable",
954
+ "summary": "Specify the readme file that should be displayed on the index page."
955
+ },
956
+ "immutable": true,
957
+ "locationInModule": {
958
+ "filename": "src/typedoc-config.ts",
959
+ "line": 201
960
+ },
961
+ "name": "readme",
962
+ "optional": true,
963
+ "type": {
964
+ "primitive": "string"
965
+ }
966
+ },
967
+ {
968
+ "abstract": true,
969
+ "docs": {
970
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
971
+ "stability": "stable",
972
+ "summary": "Specify the base URL for links to source files."
973
+ },
974
+ "immutable": true,
975
+ "locationInModule": {
976
+ "filename": "src/typedoc-config.ts",
977
+ "line": 292
978
+ },
979
+ "name": "requiredToBeDocumented",
980
+ "optional": true,
981
+ "type": {
982
+ "collection": {
983
+ "elementtype": {
984
+ "primitive": "string"
985
+ },
986
+ "kind": "array"
987
+ }
988
+ }
989
+ },
990
+ {
991
+ "abstract": true,
992
+ "docs": {
993
+ "see": "https://typedoc.org/options/organization/#searchcategoryboosts",
994
+ "stability": "stable",
995
+ "summary": "Specify the search category boosts."
996
+ },
997
+ "immutable": true,
998
+ "locationInModule": {
999
+ "filename": "src/typedoc-config.ts",
1000
+ "line": 194
1001
+ },
1002
+ "name": "searchCategoryBoosts",
1003
+ "optional": true,
1004
+ "type": {
1005
+ "collection": {
1006
+ "elementtype": {
1007
+ "primitive": "number"
1008
+ },
1009
+ "kind": "map"
1010
+ }
1011
+ }
1012
+ },
1013
+ {
1014
+ "abstract": true,
1015
+ "docs": {
1016
+ "see": "https://typedoc.org/options/organization/#searchgroupboosts",
1017
+ "stability": "stable",
1018
+ "summary": "Specify the search group boosts."
1019
+ },
1020
+ "immutable": true,
1021
+ "locationInModule": {
1022
+ "filename": "src/typedoc-config.ts",
1023
+ "line": 187
1024
+ },
1025
+ "name": "searchGroupBoosts",
1026
+ "optional": true,
1027
+ "type": {
1028
+ "collection": {
1029
+ "elementtype": {
1030
+ "primitive": "number"
1031
+ },
1032
+ "kind": "map"
1033
+ }
1034
+ }
1035
+ },
1036
+ {
1037
+ "abstract": true,
1038
+ "docs": {
1039
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
1040
+ "stability": "stable",
1041
+ "summary": "Specify the base URL for links to source files."
1042
+ },
1043
+ "immutable": true,
1044
+ "locationInModule": {
1045
+ "filename": "src/typedoc-config.ts",
1046
+ "line": 271
1047
+ },
1048
+ "name": "searchInComments",
1049
+ "optional": true,
1050
+ "type": {
1051
+ "primitive": "boolean"
1052
+ }
1053
+ },
1054
+ {
1055
+ "abstract": true,
1056
+ "docs": {
1057
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
1058
+ "stability": "stable",
1059
+ "summary": "Specify the base URL for links to source files."
1060
+ },
1061
+ "immutable": true,
1062
+ "locationInModule": {
1063
+ "filename": "src/typedoc-config.ts",
1064
+ "line": 278
1065
+ },
1066
+ "name": "searchInDocuments",
1067
+ "optional": true,
1068
+ "type": {
1069
+ "primitive": "boolean"
1070
+ }
1071
+ },
1072
+ {
1073
+ "abstract": true,
1074
+ "docs": {
1075
+ "see": "https://typedoc.org/options/organization/#sort",
1076
+ "stability": "stable",
1077
+ "summary": "Specify the sort strategy for documented values."
1078
+ },
1079
+ "immutable": true,
1080
+ "locationInModule": {
1081
+ "filename": "src/typedoc-config.ts",
1082
+ "line": 138
1083
+ },
1084
+ "name": "sort",
1085
+ "optional": true,
1086
+ "type": {
1087
+ "collection": {
1088
+ "elementtype": {
1089
+ "primitive": "string"
1090
+ },
1091
+ "kind": "array"
1092
+ }
1093
+ }
1094
+ },
1095
+ {
1096
+ "abstract": true,
1097
+ "docs": {
1098
+ "see": "https://typedoc.org/options/organization/#sortentrypoints",
1099
+ "stability": "stable",
1100
+ "summary": "Specify the sort strategy for static and instance members."
1101
+ },
1102
+ "immutable": true,
1103
+ "locationInModule": {
1104
+ "filename": "src/typedoc-config.ts",
1105
+ "line": 145
1106
+ },
1107
+ "name": "sortEntryPoints",
1108
+ "optional": true,
1109
+ "type": {
1110
+ "primitive": "boolean"
1111
+ }
1112
+ },
1113
+ {
1114
+ "abstract": true,
1115
+ "docs": {
1116
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
1117
+ "stability": "stable",
1118
+ "summary": "Specify the base URL for links to source files."
1119
+ },
1120
+ "immutable": true,
1121
+ "locationInModule": {
1122
+ "filename": "src/typedoc-config.ts",
1123
+ "line": 229
1124
+ },
1125
+ "name": "sourceUrlTemplate",
1126
+ "optional": true,
1127
+ "type": {
1128
+ "primitive": "string"
1129
+ }
1130
+ },
1131
+ {
1132
+ "abstract": true,
1133
+ "docs": {
1134
+ "see": "https://typedoc.org/options/output/#theme",
1135
+ "stability": "stable",
1136
+ "summary": "Specify a theme name to use."
1137
+ },
1138
+ "immutable": true,
1139
+ "locationInModule": {
1140
+ "filename": "src/typedoc-config.ts",
1141
+ "line": 75
1142
+ },
1143
+ "name": "theme",
1144
+ "optional": true,
1145
+ "type": {
1146
+ "primitive": "string"
1147
+ }
1148
+ },
1149
+ {
1150
+ "abstract": true,
1151
+ "docs": {
1152
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
1153
+ "stability": "stable",
1154
+ "summary": "Specify the base URL for links to source files."
1155
+ },
1156
+ "immutable": true,
1157
+ "locationInModule": {
1158
+ "filename": "src/typedoc-config.ts",
1159
+ "line": 306
1160
+ },
1161
+ "name": "treatValidationWarningsAsErrors",
1162
+ "optional": true,
1163
+ "type": {
1164
+ "primitive": "boolean"
1165
+ }
1166
+ },
1167
+ {
1168
+ "abstract": true,
1169
+ "docs": {
1170
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
1171
+ "stability": "stable",
1172
+ "summary": "Specify the base URL for links to source files."
1173
+ },
1174
+ "immutable": true,
1175
+ "locationInModule": {
1176
+ "filename": "src/typedoc-config.ts",
1177
+ "line": 299
1178
+ },
1179
+ "name": "treatWarningsAsErrors",
1180
+ "optional": true,
1181
+ "type": {
1182
+ "primitive": "boolean"
1183
+ }
1184
+ },
1185
+ {
1186
+ "abstract": true,
1187
+ "docs": {
1188
+ "see": "https://typedoc.org/options/input/#tsbuildinfo",
1189
+ "stability": "stable",
1190
+ "summary": "Specify the location and filename a .tsbuildinfo file should be written to."
1191
+ },
1192
+ "immutable": true,
1193
+ "locationInModule": {
1194
+ "filename": "src/typedoc-config.ts",
1195
+ "line": 117
1196
+ },
1197
+ "name": "tsBuildInfo",
1198
+ "optional": true,
1199
+ "type": {
1200
+ "primitive": "string"
1201
+ }
1202
+ },
1203
+ {
1204
+ "abstract": true,
1205
+ "docs": {
1206
+ "see": "https://typedoc.org/options/input/#tsconfig",
1207
+ "stability": "stable",
1208
+ "summary": "Specify a TypeScript config file that should be used to load TypeScript configuration."
1209
+ },
1210
+ "immutable": true,
1211
+ "locationInModule": {
1212
+ "filename": "src/typedoc-config.ts",
1213
+ "line": 124
1214
+ },
1215
+ "name": "tsconfig",
1216
+ "optional": true,
1217
+ "type": {
1218
+ "primitive": "string"
1219
+ }
1220
+ },
1221
+ {
1222
+ "abstract": true,
1223
+ "docs": {
1224
+ "see": "https://typedoc.org/options/comments/#sourceurltemplate",
1225
+ "stability": "stable",
1226
+ "summary": "Specify the base URL for links to source files."
1227
+ },
1228
+ "immutable": true,
1229
+ "locationInModule": {
1230
+ "filename": "src/typedoc-config.ts",
1231
+ "line": 285
1232
+ },
1233
+ "name": "validation",
1234
+ "optional": true,
1235
+ "type": {
1236
+ "fqn": "@nikovirtala/projen-typedoc.ValidationOptions"
1237
+ }
1238
+ }
1239
+ ],
1240
+ "symbolId": "src/typedoc-config:TypeDocConfiguration"
1241
+ },
1242
+ "@nikovirtala/projen-typedoc.TypeDocOptions": {
1243
+ "assembly": "@nikovirtala/projen-typedoc",
1244
+ "datatype": true,
1245
+ "docs": {
1246
+ "stability": "stable"
1247
+ },
1248
+ "fqn": "@nikovirtala/projen-typedoc.TypeDocOptions",
1249
+ "kind": "interface",
1250
+ "locationInModule": {
1251
+ "filename": "src/index.ts",
1252
+ "line": 19
1253
+ },
1254
+ "name": "TypeDocOptions",
1255
+ "properties": [
1256
+ {
1257
+ "abstract": true,
1258
+ "docs": {
1259
+ "remarks": "This configuration will be merged with the default configuration",
1260
+ "stability": "stable",
1261
+ "summary": "Full TypeDoc configuration."
1262
+ },
1263
+ "immutable": true,
1264
+ "locationInModule": {
1265
+ "filename": "src/index.ts",
1266
+ "line": 32
1267
+ },
1268
+ "name": "typeDocConfig",
1269
+ "optional": true,
1270
+ "type": {
1271
+ "fqn": "@nikovirtala/projen-typedoc.TypeDocConfiguration"
1272
+ }
1273
+ },
1274
+ {
1275
+ "abstract": true,
1276
+ "docs": {
1277
+ "default": "\"^0.28\"",
1278
+ "stability": "stable",
1279
+ "summary": "Version of TypeDoc to use."
1280
+ },
1281
+ "immutable": true,
1282
+ "locationInModule": {
1283
+ "filename": "src/index.ts",
1284
+ "line": 25
1285
+ },
1286
+ "name": "version",
1287
+ "optional": true,
1288
+ "type": {
1289
+ "primitive": "string"
1290
+ }
1291
+ }
1292
+ ],
1293
+ "symbolId": "src/index:TypeDocOptions"
1294
+ },
1295
+ "@nikovirtala/projen-typedoc.ValidationOptions": {
1296
+ "assembly": "@nikovirtala/projen-typedoc",
1297
+ "datatype": true,
1298
+ "docs": {
1299
+ "see": "https://typedoc.org/options/validation/",
1300
+ "stability": "stable",
1301
+ "summary": "Validation options."
1302
+ },
1303
+ "fqn": "@nikovirtala/projen-typedoc.ValidationOptions",
1304
+ "kind": "interface",
1305
+ "locationInModule": {
1306
+ "filename": "src/typedoc-config.ts",
1307
+ "line": 462
1308
+ },
1309
+ "name": "ValidationOptions",
1310
+ "properties": [
1311
+ {
1312
+ "abstract": true,
1313
+ "docs": {
1314
+ "stability": "stable",
1315
+ "summary": "If set, TypeDoc will produce warnings about \\@link tags which will produce broken links."
1316
+ },
1317
+ "immutable": true,
1318
+ "locationInModule": {
1319
+ "filename": "src/typedoc-config.ts",
1320
+ "line": 474
1321
+ },
1322
+ "name": "invalidLink",
1323
+ "optional": true,
1324
+ "type": {
1325
+ "primitive": "boolean"
1326
+ }
1327
+ },
1328
+ {
1329
+ "abstract": true,
1330
+ "docs": {
1331
+ "stability": "stable",
1332
+ "summary": "If set, TypeDoc will produce warnings when an exported symbol is not documented."
1333
+ },
1334
+ "immutable": true,
1335
+ "locationInModule": {
1336
+ "filename": "src/typedoc-config.ts",
1337
+ "line": 470
1338
+ },
1339
+ "name": "notDocumented",
1340
+ "optional": true,
1341
+ "type": {
1342
+ "primitive": "boolean"
1343
+ }
1344
+ },
1345
+ {
1346
+ "abstract": true,
1347
+ "docs": {
1348
+ "stability": "stable",
1349
+ "summary": "If set, TypeDoc will produce warnings when a symbol is referenced by the documentation."
1350
+ },
1351
+ "immutable": true,
1352
+ "locationInModule": {
1353
+ "filename": "src/typedoc-config.ts",
1354
+ "line": 466
1355
+ },
1356
+ "name": "notExported",
1357
+ "optional": true,
1358
+ "type": {
1359
+ "primitive": "boolean"
1360
+ }
1361
+ }
1362
+ ],
1363
+ "symbolId": "src/typedoc-config:ValidationOptions"
1364
+ },
1365
+ "@nikovirtala/projen-typedoc.Visibility": {
1366
+ "assembly": "@nikovirtala/projen-typedoc",
1367
+ "docs": {
1368
+ "see": "https://typedoc.org/options/comments/#defaultvisibility",
1369
+ "stability": "stable",
1370
+ "summary": "Specifies the default visibility for members without a visibility tag."
1371
+ },
1372
+ "fqn": "@nikovirtala/projen-typedoc.Visibility",
1373
+ "kind": "enum",
1374
+ "locationInModule": {
1375
+ "filename": "src/typedoc-config.ts",
1376
+ "line": 451
1377
+ },
1378
+ "members": [
1379
+ {
1380
+ "docs": {
1381
+ "stability": "stable"
1382
+ },
1383
+ "name": "PUBLIC"
1384
+ },
1385
+ {
1386
+ "docs": {
1387
+ "stability": "stable"
1388
+ },
1389
+ "name": "PROTECTED"
1390
+ },
1391
+ {
1392
+ "docs": {
1393
+ "stability": "stable"
1394
+ },
1395
+ "name": "PRIVATE"
1396
+ }
1397
+ ],
1398
+ "name": "Visibility",
1399
+ "symbolId": "src/typedoc-config:Visibility"
1400
+ }
1401
+ },
1402
+ "version": "0.0.0",
1403
+ "fingerprint": "54AHwE5ru6OF/iNSpTumtk0ui3DFT+4OjZz41wFIQ7E="
1404
+ }