mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
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>
45 lines
975 B
JSON
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" ]
|
|
} |