Following the example of this library using react-native (no Expo env) leads to the following error: Error: 'src/assets/node_modules/anychart/dist/js/anychart-bundle.min.js' cannot be loaded as its extension is not registered in assetExt When changing the metro-config/src/defaults/default.js to include js extension on exports.assetExts array leads to error. I am using a simple webview (see below) to load the HTML provided in this library. ``` <WebView source={require('../../assets/charts/chart.html')} style={{ height: 500}} javaScriptEnabled={true} domStorageEnabled={true} startInLoadingState={true} /> ```