qt: catch early QQmlErrors
It appears that Qt QML itself registers QList<QQmlError>
meta-type. However, this is done in a stage where there could be QML errors/warnings already generated. If such thing happens, currently, the error is not printed but instead QList<QQmlError> is not registered
message shows up.
With early registration, the error/warning is printed.