-
Notifications
You must be signed in to change notification settings - Fork 1
/
typedoc.json
47 lines (47 loc) · 1.26 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
39
40
41
42
43
44
45
46
47
{
"plugin": [
"typedoc-plugin-rename-defaults",
"typedoc-plugin-zod",
"typedoc-plugin-missing-exports",
"typedoc-plugin-inline-sources"
],
"entryPoints": ["./src/**/*.{ts,tsx}"],
"exclude": [
"**/*.test.*",
"./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/{gql,queries}/**/*",
"./src/pageComponents/**/*",
"**/*{Provider,Devtools}.tsx",
"./src/sharedComponents/Footer/**/*",
"./src/sharedComponents/TokenDropdown/assets/**/*",
"./src/sharedComponents/TokenInput/{CloseButton,Components}.tsx",
"./src/sharedComponents/{ConnectButton,DropdownButton,Buttons,Header,MainMenu,VirtualizedList}.tsx"
],
"excludeNotDocumented": false,
"excludeInternal": true,
"excludePrivate": false,
"excludeExternals": true,
"excludeProtected": true,
"sourceLinkExternal": true,
"highlightLanguages": [
"bash",
"console",
"css",
"diff",
"html",
"javascript",
"json",
"tsx",
"typescript"
],
"groupOrder": ["*", "typealiases"],
"visibilityFilters": {
"inherited": true
},
"out": "./docs"
}