(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,14 @@
module.exports = {
root: true,
extends: ['impress/next'],
parserOptions: {
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
},
settings: {
next: {
rootDir: __dirname,
},
},
ignorePatterns: ['node_modules', '.eslintrc.js'],
};