- Add TTSService.js for text-to-speech functionality - Add comprehensive deployment documentation (guides, checklists, diagnostics) - Add new SBS content (chapters 8 & 9) - Refactor 14 game modules for better maintainability (-947 lines) - Enhance SettingsDebug.js with improved debugging capabilities - Update configuration files and startup scripts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
5 lines
263 B
JavaScript
5 lines
263 B
JavaScript
import ttsService from './src/services/TTSService.js';
|
|
console.log('✅ TTSService imported successfully');
|
|
console.log('TTSService methods:', Object.getOwnPropertyNames(Object.getPrototypeOf(ttsService)));
|
|
console.log('Is available:', ttsService.isAvailable());
|