Skip to content

Commit

Permalink
Merge pull request #5 from algorandfoundation/feature/typescript-docs
Browse files Browse the repository at this point in the history
Feature/typescript docs
  • Loading branch information
robdmoore authored Mar 14, 2023
2 parents 43b319c + 4731af6 commit 750daab
Show file tree
Hide file tree
Showing 3 changed files with 199 additions and 1 deletion.
184 changes: 184 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"audit": "npm audit",
"format": "prettier --write .",
"commit-lint": "commitlint --edit -o",
"semantic-release": "semantic-release"
"semantic-release": "semantic-release",
"generate:code-docs": "typedoc"
},
"dependencies": {
"algosdk": "^2.1.0",
Expand All @@ -48,6 +49,8 @@
"tiny-invariant": "^1.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.26",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.3",
"uuid": "^9.0.0"
},
Expand Down
11 changes: 11 additions & 0 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"entryPoints": ["src/"],
"entryPointStrategy": "expand",
"out": "docs/code",
"plugin": ["typedoc-plugin-markdown"],
"theme": "default",
"cleanOutputDir": true,
"githubPages": false,
"readme": "none",
"entryDocument": "README.md"
}

0 comments on commit 750daab

Please sign in to comment.