mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-25 14:57:37 +00:00
- Add POST /api/sessions/:sessionId/reset-size endpoint to reset terminal size when clients disconnect - Implement reset-size control pipe command in PTY manager - Update session-view component to call reset-size on unmount - Add terminal resize event listener in fwd.ts to track terminal size changes - Fix source maps configuration for development mode: - Set inline source maps with embedded sources in esbuild config - Add source map settings to TypeScript configs - Set NODE_ENV to development for dev builds This ensures external terminals resize back to their actual size when the last web client disconnects. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
No EOL
511 B
JSON
19 lines
No EOL
511 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES2020"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"useDefineForClassFields": false,
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true
|
|
}
|
|
} |