-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypedoc.json
More file actions
81 lines (81 loc) · 2.1 KB
/
typedoc.json
File metadata and controls
81 lines (81 loc) · 2.1 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"entryPoints": [
"src/application/services/CatalogUpdateService.ts",
"src/application/services/WorkspaceService.ts",
"src/domain/entities/Catalog.ts",
"src/domain/entities/Package.ts",
"src/domain/entities/Workspace.ts",
"src/domain/value-objects/Version.ts",
"src/domain/value-objects/WorkspacePath.ts",
"src/domain/value-objects/WorkspaceId.ts",
"src/domain/value-objects/WorkspaceConfig.ts",
"src/domain/value-objects/CatalogCollection.ts",
"src/domain/value-objects/PackageCollection.ts",
"src/domain/repositories/WorkspaceRepository.ts",
"src/infrastructure/external-services/NpmRegistryService.ts",
"src/cli/formatters/OutputFormatter.ts"
],
"exclude": ["**/*.test.ts", "**/*.spec.ts", "**/test/**/*"],
"out": "docs/api",
"name": "pnpm-catalog-updates API Documentation",
"readme": "README.md",
"includeVersion": true,
"excludeExternals": true,
"excludePrivate": true,
"excludeProtected": false,
"hideGenerator": false,
"skipErrorChecking": true,
"sort": ["source-order"],
"kindSortOrder": [
"Document",
"Project",
"Module",
"Namespace",
"Enum",
"EnumMember",
"Class",
"Interface",
"TypeAlias",
"Constructor",
"Property",
"Variable",
"Function",
"Accessor",
"Method",
"Parameter",
"TypeParameter",
"TypeLiteral",
"CallSignature",
"ConstructorSignature",
"IndexSignature",
"GetSignature",
"SetSignature"
],
"categorizeByGroup": true,
"defaultCategory": "Other",
"categoryOrder": [
"Core",
"CLI",
"Services",
"Entities",
"Value Objects",
"Repositories",
"Formatters",
"Interactive",
"Themes",
"Utilities",
"Other"
],
"navigation": {
"includeCategories": true,
"includeGroups": true
},
"searchInComments": true,
"searchInDocuments": true,
"lightHighlightTheme": "github-light",
"darkHighlightTheme": "github-dark",
"theme": "default",
"githubPages": false,
"gitRevision": "main",
"sourceLinkTemplate": "https://github.com/yldm-tech/pnpm-catalog-updates/blob/{gitRevision}/{path}#L{line}"
}