Martín Bigio 144f8598c2 Introduce configuration template
Summary: @​public

We're rolling out a replacement for `local-cli`. As part of the process we moved many hardcoded values into a JS based configuration file.

Reviewed By: @vjeux

Differential Revision: D2533111

fb-gh-sync-id: 7250bddee9989b089ded409104e098ef15d79498
2015-10-13 06:44:14 -07:00

28 lines
459 B
JavaScript

'use strict';
var blacklist = require('./node_modules/react-native/packager/blacklist');
var config = {
getProjectRoots() {
return this._getRoots();
},
getAssetRoots() {
return this._getRoots();
},
getBlacklistRE() {
return blacklist('');
},
getTransformModulePath() {
return require.resolve('./node_modules/react-native/packager/transformer');
},
_getRoots() {
return [__dirname];
}
};
module.exports = config;