-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathtypedoc.json
38 lines (38 loc) · 1.05 KB
/
typedoc.json
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
{
"$schema": "https://typedoc.org/schema.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"checkJs": false
},
"entryPoints": [
"./src/index.js"
],
"exclude": [
"**/node_modules/**"
],
"excludeNotDocumented": true,
"favicon": "utils/typedoc/favicon.ico",
"hostedBaseUrl": "https://api.playcanvas.com/engine/",
"includeVersion": true,
"name": "Engine API Reference",
"navigationLinks": {
"Developer Site": "https://developer.playcanvas.com/",
"Blog": "https://blog.playcanvas.com/",
"Discord": "https://discord.gg/RSaMRzg",
"Forum": "https://forum.playcanvas.com/",
"GitHub": "https://github.com/playcanvas/engine"
},
"placeInternalsInOwningModule": true,
"sidebarLinks": {
"Home": "/"
},
"plugin": [
"./utils/typedoc/typedoc-plugin.mjs",
"typedoc-plugin-mdn-links",
"typedoc-plugin-missing-exports"
],
"readme": "none",
"searchGroupBoosts": {
"Classes": 2
}
}