-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypedoc.json
More file actions
85 lines (85 loc) · 2.51 KB
/
Copy pathtypedoc.json
File metadata and controls
85 lines (85 loc) · 2.51 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"$schema": "https://typedoc.org/schema.json",
"plugin": ["typedoc-plugin-markdown", "typedoc-plugin-frontmatter"],
"entryPoints": ["src/index.ts"],
"cleanOutputDir": false,
"outputs": [
{
"name": "markdown",
"path": "apps/docs/content/reference/api"
}
],
"router": "module",
"publicPath": "/reference/api/",
"preserveAnchorCasing": true,
"fileExtension": ".mdx",
"entryFileName": "modules.mdx",
"modulesFileName": "_typedoc-modules.mdx",
"flattenOutputFiles": true,
"useCodeBlocks": true,
"hidePageHeader": true,
"hideBreadcrumbs": true,
"indexFormat": "table",
"parametersFormat": "table",
"interfacePropertiesFormat": "table",
"classPropertiesFormat": "table",
"typeDeclarationFormat": "table",
"name": "Modules",
"includeVersion": false,
"readme": "none",
"entryPointStrategy": "resolve",
"categorizeByGroup": false,
"sort": ["source-order"],
"visibilityFilters": {},
"intentionallyNotExported": [
"src/application/run-index.ts:IndexMode",
"src/application/types.ts:IndexPerformanceReport",
"src/db.ts:FileRow",
"src/db.ts:SymbolRow",
"src/db.ts:ImportRow",
"src/db.ts:ImportSpecifierRow",
"src/db.ts:ExportRow",
"src/db.ts:ComponentRow",
"src/db.ts:MarkerRow",
"src/db.ts:SuppressionRow",
"src/db.ts:TypeMemberRow",
"src/db.ts:TypeHeritageRow",
"src/db.ts:CallRow",
"src/db.ts:ScopeRow",
"src/db.ts:ReferenceRow",
"src/db.ts:FileMetricsRow",
"src/db.ts:FunctionParamRow",
"src/db.ts:RuntimeMarkerRow",
"src/db.ts:TestSuiteRow",
"src/db.ts:DynamicImportRow",
"src/db.ts:CssVariableRow",
"src/db.ts:CssClassRow",
"src/db.ts:CssKeyframeRow",
"src/extractors/jsx.ts:ParsedJsxElement",
"src/extractors/jsx.ts:ParsedJsxAttribute",
"src/extractors/behavioral.ts:ParsedAsyncCall",
"src/extractors/behavioral.ts:ParsedTryCatch",
"src/extractors/behavioral.ts:ParsedDecorator",
"src/extractors/behavioral.ts:ParsedJsdocTag",
"src/sqlite-db.ts:BindValues"
],
"treatWarningsAsErrors": true,
"treatValidationWarningsAsErrors": true,
"validation": {
"notExported": true,
"invalidLink": true,
"invalidPath": true,
"rewrittenLink": true
},
"excludePrivate": true,
"excludeInternal": true,
"disableSources": true,
"sourceLinkTemplate": "https://github.com/stainless-code/codemap/blob/{gitRevision}/{path}#L{line}",
"gitRevision": "main",
"logLevel": "Info",
"frontmatterGlobals": {
"search": {
"tags": ["api", "reference"]
}
}
}