-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtypedoc.json
More file actions
49 lines (49 loc) · 1.33 KB
/
Copy pathtypedoc.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"src/**/*.ts"
],
"exclude": ["src/index.ts"],
"favicon": "./website/assets/favicon.png",
"out": "docs",
"hideGenerator": true,
"highlightLanguages": [
"bash",
"console",
"css",
"html",
"javascript",
"json",
"jsonc",
"json5",
"tsx",
"typescript",
"wgsl"
],
"titleLink": "https://martinlaxenaire.github.io/gpu-curtains/",
"navigationLinks": {
"Repository": "https://github.com/martinlaxenaire/gpu-curtains",
"Docs": "https://martinlaxenaire.github.io/gpu-curtains/docs/",
"Examples": "https://martinlaxenaire.github.io/gpu-curtains/examples/"
},
"hostedBaseUrl": "https://martinlaxenaire.github.io/gpu-curtains/docs",
"plugin": ["typedoc-plugin-mdn-links", "./umami-typedoc-plugin/index.js"],
"defaultCategory": "API",
"categoryOrder": ["Tutorials", "About", "API"],
"projectDocuments": ["guides/getting-started.md", "guides/core-concepts.md"],
"sort": ["source-order"],
"sourceLinkExternal": true,
"markdownLinkExternal": true,
"validation": {
"notExported": true,
"invalidLink": true,
"notDocumented": true
},
"externalSymbolLinkMappings": {
"@webgpu/types": {
"GPUCanvasToneMapping": "#",
"GPUCanvasConfiguration": "#",
"GPUAddressMode": "#"
}
}
}