We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d05fa4 commit d4a9fa2Copy full SHA for d4a9fa2
.changeset/sharp-nails-push.md
@@ -0,0 +1,5 @@
1
+---
2
+'@livekit/agents-plugin-bey': patch
3
4
+
5
+Added package-specific TypeDoc config
plugins/bey/tsconfig.json
@@ -1,9 +1,16 @@
{
"extends": "../../tsconfig.json",
+ "include": ["./src"],
"compilerOptions": {
- "rootDir": "src",
- "outDir": "dist"
+ // match output dir to input dir. e.g. dist/index instead of dist/src/index
6
+ "rootDir": "./src",
7
+ "declarationDir": "./dist",
8
+ "outDir": "./dist"
9
},
- "include": ["src/**/*"],
- "exclude": ["node_modules", "dist", "**/*.test.ts"]
10
+ "typedocOptions": {
11
+ "name": "plugins/agents-plugin-bey",
12
+ "entryPointStrategy": "resolve",
13
+ "readme": "none",
14
+ "entryPoints": ["src/index.ts"]
15
+ }
16
}
0 commit comments