Skip to content

Commit 750daab

Browse files
authored
Merge pull request #5 from algorandfoundation/feature/typescript-docs
Feature/typescript docs
2 parents 43b319c + 4731af6 commit 750daab

File tree

3 files changed

+199
-1
lines changed

3 files changed

+199
-1
lines changed

package-lock.json

Lines changed: 184 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"audit": "npm audit",
2525
"format": "prettier --write .",
2626
"commit-lint": "commitlint --edit -o",
27-
"semantic-release": "semantic-release"
27+
"semantic-release": "semantic-release",
28+
"generate:code-docs": "typedoc"
2829
},
2930
"dependencies": {
3031
"algosdk": "^2.1.0",
@@ -48,6 +49,8 @@
4849
"tiny-invariant": "^1.3.1",
4950
"ts-jest": "^29.0.3",
5051
"ts-node": "^10.9.1",
52+
"typedoc": "^0.23.26",
53+
"typedoc-plugin-markdown": "^3.14.0",
5154
"typescript": "^4.9.3",
5255
"uuid": "^9.0.0"
5356
},

typedoc.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"entryPoints": ["src/"],
3+
"entryPointStrategy": "expand",
4+
"out": "docs/code",
5+
"plugin": ["typedoc-plugin-markdown"],
6+
"theme": "default",
7+
"cleanOutputDir": true,
8+
"githubPages": false,
9+
"readme": "none",
10+
"entryDocument": "README.md"
11+
}

0 commit comments

Comments
 (0)