Files
netris-nestri/apps/www/tsconfig.json
Wanjohi 379db1c87b feat: Add streaming support (#125)
This adds:
- [x] Keyboard and mouse handling on the frontend
- [x] Video and audio streaming from the backend to the frontend
- [x] Input server that works with Websockets

Update - 17/11
- [ ] Master docker container to run this
- [ ] Steam runtime
- [ ] Entrypoint.sh

---------

Co-authored-by: Kristian Ollikainen <14197772+DatCaptainHorse@users.noreply.github.com>
Co-authored-by: Kristian Ollikainen <DatCaptainHorse@users.noreply.github.com>
2024-12-08 14:54:56 +03:00

45 lines
975 B
JSON

{
"extends": "@nestri/typescript-config/base.json",
"compilerOptions": {
"allowJs": true,
"target": "ES2022",
"module": "ES2022",
"lib": [
"es2022",
"DOM",
"WebWorker",
"DOM.Iterable"
],
"jsx": "react-jsx",
"jsxImportSource": "@builder.io/qwik",
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"skipLibCheck": true,
"incremental": true,
"isolatedModules": true,
"outDir": "tmp",
"noEmit": true,
"paths": {
"@/*": [
"./src/*"
],
"content-collections": [
"./.content-collections/generated"
]
}
},
"files": [
".eslintrc.cjs"
],
"include": [
"src",
"./*.d.ts",
"./*.config.ts",
"./*.config.js",
"content-collections.ts"
, "../../packages/input/src/webrtc-stream.ts" ]
}