Files
OwnCord/Client/tauri-client/tsconfig.json
T
jevb 8f45307ec5 feat: add stream preview, video grid track lifecycle, and build cleanup
- Integrate stream preview into VoiceChannel sidebar for remote users
  with active camera/screenshare
- Add track lifecycle listeners (ended/mute) to VideoGrid to auto-remove
  stale black tiles
- Call video.play() explicitly for WebView2 autoplay compatibility
- Prevent redundant voice join when already in channel (ChannelSidebar)
- Add attachScrollCollapse for preview cleanup on scroll
- Remove tauri_typegen from build.rs
- Add Server/server.exe to gitignore
- Add stream-preview and video-mode-controller test coverage
2026-04-01 17:07:02 +02:00

46 lines
817 B
JSON

{
"compilerOptions": {
"target": "ES2023",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"lib": [
"ES2023",
"DOM",
"DOM.Iterable"
],
"paths": {
"@lib/*": [
"./src/lib/*"
],
"@stores/*": [
"./src/stores/*"
],
"@components/*": [
"./src/components/*"
],
"@pages/*": [
"./src/pages/*"
],
"@styles/*": [
"./src/styles/*"
]
},
"baseUrl": "."
},
"include": [
"src",
"tests"
],
"exclude": [
"tests/e2e"
]
}