-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtypedoc.json
More file actions
59 lines (59 loc) · 1.56 KB
/
typedoc.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"excludeExternals": true,
"excludeInternal": true,
"excludeNotDocumented": false,
"excludePrivate": false,
"excludeProtected": true,
"hideGenerator": true,
"name": "dAppBooster",
"readme": "./README.md",
"skipErrorChecking": true,
"sourceLinkExternal": true,
"out": "./typedoc",
"plugin": [
"typedoc-plugin-rename-defaults",
"typedoc-plugin-missing-exports",
"typedoc-plugin-inline-sources",
"typedoc-github-theme"
],
"entryPoints": ["./src/**/*.{ts,tsx}"],
"exclude": [
"**/*.test.*",
"**/styles.ts",
"**/*{Provider,Devtools}.tsx",
"**/*{styles}.ts",
"./src/{vite-env.d.ts,main.tsx,routeTree.gen.ts}",
"./src/lib/{wagmi,wallets}/**/*",
"./src/routes/**/*",
"./src/utils/{logger,tokenListsCache}.ts",
"./src/constants/contracts/**/*",
"./src/hooks/generated.ts",
"./src/subgraphs/**/*",
"./src/components/ui/**/*",
"./src/components/pageComponents/**/*",
"./src/components/sharedComponents/ui/**/*",
"./src/components/sharedComponents/TanStackReactQueryDevtools.tsx",
"./src/components/sharedComponents/TanStackRouterDevtools.tsx",
"./src/components/sharedComponents/TokenInput/Components.tsx"
],
"highlightLanguages": [
"bash",
"console",
"css",
"diff",
"html",
"javascript",
"json",
"tsx",
"typescript"
],
"groupOrder": ["*", "typealiases"],
"visibilityFilters": {
"inherited": true
},
"blockTags": ["@dev", "@source", "@name", "@description"],
"validation": {
"invalidLink": true,
"notDocumented": false
}
}