/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.83.7
packages/rn-tester/react-native.config.js
32 строки
845 B
Nicola Corti
Stop building JSC inside RN-Tester (#51865)
06 июн 2025, 14:54
06 июн 2025, 14:54
be113b4
Код
Авторство
О чём код?
/** * 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', }, }, };