-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtypedoc.json
More file actions
46 lines (46 loc) Β· 1.08 KB
/
Copy pathtypedoc.json
File metadata and controls
46 lines (46 loc) Β· 1.08 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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./src/index.ts"],
"entryPointStrategy": "expand",
"out": "docs",
"plugin": [],
"exclude": [
"**/node_modules/**",
"**/*.spec.ts",
"**/*.test.ts",
"**/test/**",
"**/tests/**",
"**/lib/vitest-setup.ts"
],
"excludePrivate": true,
"excludeProtected": false,
"excludeExternals": true,
"excludeInternal": true,
"readme": "./README.md",
"name": "AWS SDK Vitest Mock - API Reference",
"includeVersion": true,
"sort": ["source-order", "required-first"],
"navigation": {
"includeCategories": true,
"includeGroups": true
},
"categorizeByGroup": true,
"searchInComments": true,
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": false
},
"theme": "default",
"githubPages": true,
"hideGenerator": false,
"excludeNotDocumented": false,
"validation": {
"notExported": true,
"invalidLink": true,
"notDocumented": false
},
"externalPattern": ["**/node_modules/**"],
"excludeReferences": true
}