-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
74 lines (74 loc) · 2.07 KB
/
Copy pathtypedoc.json
File metadata and controls
74 lines (74 loc) · 2.07 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
{
"$schema": "https://typedoc.org/schema.json",
"plugin": ["typedoc-plugin-markdown", "typedoc-plugin-frontmatter"],
"entryPoints": [
"packages/core/src/index.ts",
"packages/react/src/index.tsx",
"packages/svelte/src/index.ts",
"packages/svelte/src/store.ts",
"packages/vue/src/index.ts",
"packages/solid/src/index.ts",
"packages/preact/src/index.ts",
"packages/angular/src/index.ts",
"packages/lit/src/index.ts",
"packages/alpine/src/index.ts"
],
"tsconfig": "tsconfig.docs.json",
"cleanOutputDir": false,
"outputs": [
{
"name": "markdown",
"path": "apps/docs/content/reference/api"
}
],
"router": "module",
"publicPath": "/reference/api/",
"preserveAnchorCasing": true,
"fileExtension": ".mdx",
"entryFileName": "_typedoc-entry.mdx",
"modulesFileName": "_typedoc-modules.mdx",
"flattenOutputFiles": true,
"useCodeBlocks": true,
"hidePageHeader": true,
"hideBreadcrumbs": true,
"indexFormat": "table",
"parametersFormat": "table",
"interfacePropertiesFormat": "table",
"classPropertiesFormat": "table",
"typeDeclarationFormat": "table",
"name": "@stainless-code/layers",
"readme": "none",
"entryPointStrategy": "resolve",
"categorizeByGroup": false,
"sort": ["source-order"],
"visibilityFilters": {},
"intentionallyNotExported": [],
"treatWarningsAsErrors": true,
"treatValidationWarningsAsErrors": true,
"validation": {
"notExported": true,
"invalidLink": true,
"invalidPath": true,
"rewrittenLink": true
},
"excludePrivate": true,
"excludeInternal": true,
"excludeCategories": ["styles"],
"externalSymbolLinkMappings": {
"@lit/context": {
"ContextProvider": "https://lit.dev/docs/data/context/"
},
"@lit/reactive-element": {
"PropertyDeclaration": "https://lit.dev/docs/api/ReactiveElement/#PropertyDeclaration",
"css": "https://lit.dev/docs/api/styles/#css"
},
"lit": {
"css": "https://lit.dev/docs/api/styles/#css"
}
},
"frontmatterGlobals": {
"search": {
"tags": ["api", "reference"]
}
}
}