Clean up examples and tutorials as well as minor doc tweaks.

Also add a reconnect loop to collab clicker.
This commit is contained in:
Sebastian Jeltsch
2025-01-24 13:41:45 +01:00
parent 66991290fc
commit c3a81d7359
70 changed files with 164 additions and 304 deletions

View File

@@ -0,0 +1,22 @@
{
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": false,
"moduleResolution": "bundler",
"target": "ESNext",
"module": "ESNext",
"noEmit": true,
"paths": {
"@/*": ["./src/*"],
"@schema/*": ["./types/*"],
"@bindings/*": ["../../trailbase-core/bindings/*"]
}
},
"include": ["src/**/*"],
"exclude": [
"dist",
"node_modules"
]
}