mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
be113b4406
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51865 As in 0.81 we're stopping 1st party support for JSC, we can now cleanup the RNTester flavor for JSC and simplify the setup here. Changelog: [Internal] [Changed] - Reviewed By: rshest Differential Revision: D76051319 fbshipit-source-id: 79b01cc64af2466a0be47ceaa0cd211cb6b02f53
33 lines
845 B
JavaScript
33 lines
845 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @noflow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
// Inside the React Native monorepo, we need to explicitly extend the base
|
|
// CLI config as the adjacent package will not be conventionally discovered.
|
|
const config = require('../react-native/react-native.config.js');
|
|
|
|
module.exports = {
|
|
...config,
|
|
reactNativePath: '../react-native',
|
|
project: {
|
|
ios: {
|
|
sourceDir: '.',
|
|
},
|
|
android: {
|
|
sourceDir: '../../',
|
|
// To remove once the CLI fix for manifestPath search path is landed.
|
|
manifestPath:
|
|
'packages/rn-tester/android/app/src/main/AndroidManifest.xml',
|
|
packageName: 'com.facebook.react.uiapp',
|
|
},
|
|
},
|
|
};
|