-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
51 lines (51 loc) · 1.15 KB
/
typedoc.json
File metadata and controls
51 lines (51 loc) · 1.15 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
{
"entryPoints": ["./src"],
"entryPointStrategy": "expand",
"tsconfig": "./tsconfig.base.json",
"exclude": ["**/*.test.ts"],
"excludeInternal": false,
"externalSymbolLinkMappings": {
"@commander-js/extra-typings": {
"*": "https://github.com/commander-js/extra-typings/blob/main/index.d.ts"
}
},
"highlightLanguages": [
"bash",
"console",
"css",
"html",
"javascript",
"json",
"jsonc",
"json5",
"md",
"tsx",
"typescript",
"yaml",
"yml"
],
"hostedBaseUrl": "https://docs.karmanivero.us/get-dotenv",
"navigation": {
"excludeReferences": true
},
"navigationLinks": {
"GitHub": "https://github.com/karmaniverous/get-dotenv"
},
"out": "./docs/",
"plugin": ["typedoc-plugin-mdn-links", "typedoc-plugin-replace-text"],
"projectDocuments": ["./guides/index.md", "./CHANGELOG.md"],
"replaceText": {
"replacements": [
{
"flags": "gis",
"pattern": "<!-- TYPEDOC_EXCLUDE -->.*?<!-- /TYPEDOC_EXCLUDE -->",
"replace": ""
}
]
},
"searchInComments": true,
"searchInDocuments": true,
"validation": {
"notDocumented": true
}
}