mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
5977f494fc
Reviewed By: frantic Differential Revision: D2547435 fb-gh-sync-id: 77016ee5beba854a4cb58e9ac04b91a7dd76cf3e
21 lines
333 B
JavaScript
21 lines
333 B
JavaScript
'use strict';
|
|
|
|
var blacklist = require('./node_modules/react-native/packager/blacklist');
|
|
|
|
var config = {
|
|
getProjectRoots() {
|
|
return [__dirname];
|
|
},
|
|
|
|
getAssetRoots() {
|
|
// speficy where to look for assets
|
|
return [];
|
|
},
|
|
|
|
getBlacklistRE(platform) {
|
|
return blacklist(platform);
|
|
}
|
|
};
|
|
|
|
module.exports = config;
|