mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
- 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
46 lines
817 B
JSON
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"
|
|
]
|
|
}
|