mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
…-andriod-e2e-test-job.yml ### Description <!-- Describe your changes. --> ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. -->
17 lines
543 B
JavaScript
17 lines
543 B
JavaScript
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
|
|
const path = require('path');
|
|
/**
|
|
* Metro configuration
|
|
* https://facebook.github.io/metro/docs/configuration
|
|
*
|
|
* @type {import('metro-config').MetroConfig}
|
|
*/
|
|
const config = {
|
|
watchFolders: [
|
|
path.resolve(__dirname, '..'), // Ensure Metro watches the lib folder
|
|
],
|
|
resolver: {
|
|
sourceExts: ['tsx', 'ts', 'jsx', 'js', 'json'], // Ensure TypeScript files are recognized
|
|
},
|
|
};
|
|
module.exports = mergeConfig(getDefaultConfig(__dirname), config);
|