Angular CLI hangs indefinitely when using `bun run --bun` due to an
infinite loop in TypeScript's __exportStar helper when processing
certain module structures.
The issue occurs when __exportStar iterates over module exports using
Object.getOwnPropertyDescriptor and Object.defineProperty with modules
that have complex class structures with property initializers and
multiple nested __importStar patterns.
This test reproduces the exact pattern from @angular-devkit/core that
causes the hang, but in a self-contained way without requiring Angular
to be installed.
The test is currently skipped as it reproduces the hang.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>