mirror of
https://github.com/morten-olsen/react-native-debug-console.git
synced 2026-02-08 00:36:26 +01:00
9 lines
291 B
JavaScript
9 lines
291 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
preset: 'react-native',
|
|
rootDir: path.join(__dirname, 'packages'),
|
|
moduleNameMapper: {
|
|
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': path.join(__dirname, '__mocks__', 'fileMock.js'),
|
|
},
|
|
}; |