18 lines
448 B
JavaScript
18 lines
448 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
const path = require('path');
|
|
const blacklist = require('metro/src/blacklist');
|
|
|
|
const config = {
|
|
getBlacklistRE() {
|
|
return blacklist([/react-native\/local-cli\/core\/__fixtures__.*/]);
|
|
},
|
|
getProjectRoots() {
|
|
return [
|
|
path.resolve(__dirname, '.'),
|
|
];
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|