https://linear.app/comm/issue/ENG-10286/migrate-jsi-related-stuff
Before the upgrade we implemented JSIModulePackage to initialize some jsi stuff, but JSIModulePackage is no longer available in react-native.
So instead we use approach from reanimated and expo and create a turbo module with one initializeComm function. We call this function from js side on app startup.
See installTurbomodule function from reanimated: https://github.com/software-mansion/react-native-reanimated/blob/c4f22a2eaf61166540df14e355039cb1b61bb5f8/packages/react-native-worklets/src/specs/NativeWorkletsModule.ts#L6
In the next diffs there will be Android and iOS sides.
Depends on D14970