Skip to content

Commit 2d2febc

Browse files
committed
build(typedoc): create a typedoc configuration file
1 parent f5c72e2 commit 2d2febc

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test": "jest --coverage",
4242
"test:watch": "jest --coverage --watch",
4343
"test:prod": "yarn lint && yarn test --no-cache",
44-
"docs": "rimraf docs && typedoc --out docs --theme minimal src",
44+
"docs": "rimraf docs && typedoc --options typedoc.json",
4545
"commit": "cz",
4646
"precommit": "lint-staged"
4747
},

typedoc.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "Sparse Merkle tree",
3+
"entryPoints": ["./src/index.ts"],
4+
"links": [
5+
{
6+
"label": "Github",
7+
"url": "https://github.com/cedoor/sparse-merkle-tree"
8+
}
9+
]
10+
}

0 commit comments

Comments
 (0)