UNPKG

expo-health-kit

Version:

A comprehensive TypeScript library for React Native and Expo that enables exporting Apple HealthKit data

18 lines (14 loc) 495 B
// Learn more https://docs.expo.dev/guides/customizing-metro const { getDefaultConfig } = require('expo/metro-config'); /** @type {import('expo/metro-config').MetroConfig} */ const config = getDefaultConfig(__dirname); // Add any custom config here config.resolver.blockList = [ // Exclude all files in the plugin directory /plugin\/.*/, // Exclude config plugins from bundling /@expo\/config-plugins\/.*/, // Exclude app.plugin.js /app\.plugin\.js$/, ]; module.exports = config;