Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0fcdd26
chore: add CLAUDE.md with repo guidance for Claude Code
mcottontensor Apr 9, 2026
8c01e3c
chore: standardize TypeScript version and re-enable ESLint rules
mcottontensor Apr 9, 2026
611e9eb
chore: re-enable no-floating-promises ESLint rule
mcottontensor Apr 9, 2026
0743943
chore: standardize @types/node to ^22.14.0 across all workspaces
mcottontensor Apr 9, 2026
252889b
chore: standardize TypeScript target to ES6 and ESLint deps
mcottontensor Apr 9, 2026
32caee9
fix: spread args correctly in EventEmitter.once() callback
mcottontensor Apr 9, 2026
cebc7a8
fix: correct error message typo, guard fields access, and fix error c…
mcottontensor Apr 9, 2026
ebb11e6
fix(signalling): remove redundant playerCount, deduplicate config mes…
mcottontensor Apr 9, 2026
f26168c
fix(wilbur): correct status operationId, return 404 for missing resou…
mcottontensor Apr 9, 2026
0a464e1
fix(frontend/library): strict equality, replace console.log with Logger
mcottontensor Apr 9, 2026
f091789
fix(frontend/ui-library): strict equality, fix --colour8 CSS variable…
mcottontensor Apr 9, 2026
b29098b
fix(sfu): add const to for-of loops, guard JSON.parse, strict equalit…
mcottontensor Apr 9, 2026
eef8f05
fix: upgrade test-exclude to v7 to fix jest tests broken by glob v13
mcottontensor Apr 9, 2026
b7fb42e
fix(JSStreamer): add rootDir to tsconfig.cjs.json to fix webpack ts-l…
mcottontensor Apr 9, 2026
155d016
fix(ci): always output signalling and streamer logs in streaming heal…
mcottontensor Apr 9, 2026
24eca5e
fix: use static imports for REST API path handlers to fix Windows CI
mcottontensor Apr 9, 2026
1d83e16
chore: update GitHub Actions — fix path typo, standardize action vers…
mcottontensor Apr 10, 2026
c1845c6
fix: replace fixed sleep with registry propagation poll in npm publis…
mcottontensor Apr 10, 2026
ff3bda3
fix: create or update release tag on npm publish to handle re-runs
mcottontensor Apr 10, 2026
7bad4ea
chore: remove redundant healthcheck-libs-with-public-deps workflow
mcottontensor Apr 10, 2026
cb5c68e
chore: simplify create-gh-release — remove redundant build steps and …
mcottontensor Apr 10, 2026
7c33e73
fix: create or update docker release tags to handle re-runs
mcottontensor Apr 10, 2026
3ceffab
fix: deduplicate link checker issues and auto-close when links pass
mcottontensor Apr 10, 2026
e73bbf9
docs: add DEVELOPING.md describing development workflow from feature …
mcottontensor Apr 10, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(JSStreamer): add rootDir to tsconfig.cjs.json to fix webpack ts-l…
…oader TS5011 error
  • Loading branch information
mcottontensor committed Apr 9, 2026
commit b7fb42e9929e5b79430576664f7b4089304d9723
1 change: 1 addition & 0 deletions Extras/JSStreamer/tsconfig.cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"compilerOptions": {
"outDir": "./dist/cjs",
"module": "commonjs",
"rootDir": "./src",
"declaration": true,
"declarationDir": "./dist/types"
}
Expand Down
Loading