-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtypedoc.json
More file actions
27 lines (27 loc) · 826 Bytes
/
typedoc.json
File metadata and controls
27 lines (27 loc) · 826 Bytes
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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"./src/index.ts",
"./src/test-transformer/jest-transformer.ts",
"./src/test-transformer/vitest-transformer.ts",
"./src/value-generators/index.ts"
],
"excludeInternal": true,
"excludeReferences": true,
"excludeExternals": true,
"excludePrivate": true,
"excludeProtected": true,
"includeHierarchySummary": false,
"outputs": [
{
"name": "html",
"path": "docs/_html"
}
],
"name": "Algorand TypeScript Testing",
"projectDocuments": ["docs/testing-guide.md", "docs/algots.md", "docs/api.md", "docs/coverage.md", "docs/examples.md", "docs/faq.md"],
"plugin": ["typedoc-plugin-missing-exports", "typedoc-plugin-markdown"],
"cleanOutputDir": true,
"readme": "docs/readme.md",
"gitRevision": "main"
}