refactor: add typescript & pnpm workspace & docker file

This commit is contained in:
Ralex
2025-10-16 23:12:40 +02:00
parent 8f73241f34
commit edb7146d6d
122 changed files with 7568 additions and 8502 deletions

15
tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"baseUrl": ".",
"noEmit": true,
"noErrorTruncation": true,
"esModuleInterop": true,
"paths": {
"@rahoot/common/*": ["./packages/common/src/*"],
"@rahoot/socket/*": ["./packages/socket/src/*"],
"@rahoot/web/*": ["./packages/web/src/*"]
},
"strict": true,
"strictNullChecks": true
}
}