Skip to content

Commit 17b8b41

Browse files
authored
fix(docs): configure typedoc entry points for monorepo (#3220)
1 parent 908ff80 commit 17b8b41

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"cleanup": "rm -rf junit-results",
1717
"test": "npm run cleanup && npm run test -ws --if-present",
1818
"build": "tsc --build",
19-
"documentation": "typedoc --out ./documentation",
19+
"documentation": "typedoc --entryPointStrategy packages --entryPoints ./packages/client ./packages/bloom ./packages/json ./packages/search ./packages/time-series ./packages/entraid ./packages/redis --out ./documentation",
2020
"gh-pages": "gh-pages -d ./documentation -e ./documentation -u 'documentation-bot <documentation@bot>'",
2121
"release": "npm run release --workspaces --if-present --"
2222
},

packages/redis/tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,10 @@
55
},
66
"include": [
77
"./index.ts"
8-
]
8+
],
9+
"typedocOptions": {
10+
"entryPoints": [
11+
"./index.ts"
12+
]
13+
}
914
}

0 commit comments

Comments
 (0)