Add powerful browser UI customization options to browser_configure tool: - slowMo: Visual delays for demo recordings and training videos - devtools: Auto-open Chrome DevTools for debugging sessions - args: Custom browser launch arguments for themes and behavior - chromiumSandbox: Sandbox control for container deployments Key features: • Dark mode interface support with --force-dark-mode • Demo recording optimization with configurable action delays • DevTools integration for development workflows • Container deployment flexibility with sandbox control • Comprehensive argument merging without duplicates Includes complete documentation, testing suite, and production-ready validation. Addresses user request for browser UI differentiation and visual customization capabilities. Technical changes: - Enhanced Context.updateBrowserConfig() with UI parameter handling - Extended configure tool schema with new Zod validations - Fixed TypeScript compilation with skipLibCheck for upstream deps - Added comprehensive test suite and documentation guide
17 lines
299 B
JSON
17 lines
299 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "nodenext",
|
|
"strict": true,
|
|
"module": "NodeNext",
|
|
"rootDir": "src",
|
|
"outDir": "./lib",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
],
|
|
}
|