Skip to content

Commit d4a9fa2

Browse files
authored
Fix Bey TS Config (#768)
1 parent 8d05fa4 commit d4a9fa2

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

.changeset/sharp-nails-push.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@livekit/agents-plugin-bey': patch
3+
---
4+
5+
Added package-specific TypeDoc config

plugins/bey/tsconfig.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
{
22
"extends": "../../tsconfig.json",
3+
"include": ["./src"],
34
"compilerOptions": {
4-
"rootDir": "src",
5-
"outDir": "dist"
5+
// match output dir to input dir. e.g. dist/index instead of dist/src/index
6+
"rootDir": "./src",
7+
"declarationDir": "./dist",
8+
"outDir": "./dist"
69
},
7-
"include": ["src/**/*"],
8-
"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+
}
916
}

0 commit comments

Comments
 (0)