-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtypedoc.json
More file actions
57 lines (57 loc) · 1.51 KB
/
typedoc.json
File metadata and controls
57 lines (57 loc) · 1.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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"src/main.tsx",
"src/App.tsx",
"src/hooks/useAudioManager.ts",
"src/hooks/useGameState.ts",
"src/utils/gameConfig.ts",
"src/utils/targetPhysics.ts"
],
"out": "docs/api",
"tsconfig": "tsconfig.app.json",
"name": "Game Template API Documentation",
"readme": "README.md",
"includeVersion": true,
"excludePrivate": true,
"excludeProtected": false,
"excludeInternal": false,
"excludeExternals": true,
"categorizeByGroup": true,
"searchInComments": true,
"searchInDocuments": true,
"highlightLanguages": [
"bash",
"console",
"css",
"html",
"javascript",
"json",
"jsonc",
"markdown",
"mermaid",
"tsx",
"typescript",
"yaml"
],
"navigationLinks": {
"GitHub": "https://github.com/Hack23/game",
"ISMS Policies": "https://github.com/Hack23/ISMS-PUBLIC"
},
"sidebarLinks": {
"ISMS Policy Mapping": "https://github.com/Hack23/game/blob/main/docs/ISMS_POLICY_MAPPING.md",
"Security Policy": "https://github.com/Hack23/game/blob/main/SECURITY.md",
"Security Headers": "https://github.com/Hack23/game/blob/main/SECURITY_HEADERS.md",
"Architecture": "https://github.com/Hack23/game/blob/main/docs/MCP_ARCHITECTURE.md"
},
"projectDocuments": [
"SECURITY.md",
"SECURITY_HEADERS.md",
"docs/ISMS_POLICY_MAPPING.md",
"docs/WORKFLOWS.md",
"docs/End-of-Life-Strategy.md"
],
"plugin": [],
"hideGenerator": false,
"cleanOutputDir": true
}