Fix lazy components suspending unnecessarily when already preloaded by loadableReady
Summary
Currently, when using lazy in combination with SSR (ChunkExtractor on the server side and loadableReady on the client), hydration does not reliably succeed despite the chunks being ready.
This is caused by the suspense branch suspending despite having the module ready and not being in a loading state. By using the existing result when state is not loading, we can avoid suspending and hydrate reliably without mismatches.
The existing logic does not work because there is no cachedPromise if preloaded via loadableReady
Test plan
Added two tests that replicate the babel transformed output when using the plugin.
There are lint failures on files unrelated to this PR that exist on main
@theKashey @gregberge Any interest in this PR?