(y-webrtc-signaling) create signaling server

Create signaling server for WebRTC.
It will be used for the collaborative editor, client
will connect to this server to see their
changes in real-time.
This commit is contained in:
Anthony LC
2024-04-08 11:56:17 +02:00
committed by Anthony LC
parent 6b567a0f69
commit f4e4cbaa56
6 changed files with 322 additions and 13 deletions

View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": false,
"outDir": "./dist",
},
"include": ["**/*.ts"],
"exclude": ["node_modules"]
}