-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtypedoc.json
More file actions
69 lines (69 loc) · 2.32 KB
/
Copy pathtypedoc.json
File metadata and controls
69 lines (69 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["packages/aws", "packages/azure", "packages/cloudflare", "packages/common"],
"entryPointStrategy": "packages",
"tsconfig": "./tsconfig.base.json",
"out": "api-docs",
"name": "GradientEdge CDK Utils",
"readme": "README.md",
"plugin": ["typedoc-plugin-mermaid"],
"hideGenerator": true,
"favicon": "./img/logo.png",
"darkHighlightTheme": "github-dark",
"lightHighlightTheme": "github-light",
"customFooterHtml": "© <span id=\"footer-year\"></span> GradientEdge. All rights reserved.",
"excludePrivate": true,
"excludeExternals": true,
"searchInComments": true,
"navigation": {
"includeCategories": true,
"includeGroups": true,
"includeFolders": true
},
"sort": ["kind", "alphabetical"],
"categorizeByGroup": true,
"groupOrder": ["Classes", "Interfaces", "Enumerations", "Type Aliases", "Functions", "Variables"],
"categoryOrder": ["Construct", "Service", "Common", "Enum", "Interface", "Constant", "*"],
"projectDocuments": [
"./docs/Getting-Started.md",
"./docs/Architecture.md",
"./docs/Configuration.md",
"./docs/Creating-Custom-Constructs.md",
"./docs/Build.md",
"./docs/CI-CD.md",
"./docs/Development.md",
"./docs/Contributing.md",
"./docs/Releasing.md"
],
"customCss": "./theme/typedoc-theme.css",
"customJs": "./theme/typedoc-custom.js",
"blockTags": [
"@category",
"@classdesc",
"@default",
"@defaultValue",
"@deprecated",
"@description",
"@example",
"@inheritDoc",
"@note",
"@param",
"@remarks",
"@returns",
"@see",
"@summary",
"@throws",
"@typeParam"
],
"externalSymbolLinkMappings": {
"@pulumi/pulumi": {
"CustomResource": "https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/pulumi/#CustomResource"
},
"aws-cdk-lib": {
"ContainerInsights.DISABLED": "https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ecs.ContainerInsights.html",
"NetworkMode.AWS_VPC": "https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ecs.NetworkMode.html",
"NetworkMode.HOST": "https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ecs.NetworkMode.html",
"AwsCustomResource": "https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.custom_resources.AwsCustomResource.html"
}
}
}