forked from boostcampwm-2024/web30-stop-troublepainter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.json
29 lines (29 loc) · 861 Bytes
/
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
{
"name": "Webebeb Team's Tools Docs",
"out": "docs",
"entryPointStrategy": "expand",
"exclude": [
"**/*.stories.tsx",
"**/*.test.ts",
"**/node_modules/**",
"**/dist/**"
],
"entryPoints": [
"./client/src/utils/**/*.ts",
"./client/src/hooks/**/*.ts",
"./client/src/hooks/**/*.tsx",
"./client/src/stores/**/*.ts",
"./server/src/utils/**/*.ts"
],
"categorizeByGroup": true,
"categoryOrder": ["Client Utils", "Client Hooks", "Server Utils"],
"navigationLinks": {
"Documentation": "/web30-stop-troublepainter/",
"Storybook (Main)": "/web30-stop-troublepainter/storybook",
"Storybook (Develop)": "/web30-stop-troublepainter/storybook-develop"
},
"plugin": ["typedoc-plugin-extras"],
"favicon": "./client/public/favicon.ico",
"skipErrorChecking": true,
"tsconfig": "./tsconfig.base.json"
}