/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
v16.11.0
scripts/shared/inlinedHostConfigs.js
56 строк
1 KB
Dominic Gannaway
[Fire] Remove unused React fire fork (#16046)
03 июл 2019, 13:05
Не верифицирован
03 июл 2019, 13:05
b365ee2
Код
Авторство
О чём код?
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 'use strict'; module.exports = [ { shortName: 'dom', entryPoints: ['react-dom', 'react-dom/unstable-fizz.node'], isFlowTyped: true, isFizzSupported: true, }, { shortName: 'dom-browser', entryPoints: ['react-dom/unstable-fizz.browser'], isFlowTyped: true, isFizzSupported: true, }, { shortName: 'art', entryPoints: ['react-art'], isFlowTyped: false, // TODO: type it. isFizzSupported: false, }, { shortName: 'native', entryPoints: ['react-native-renderer'], isFlowTyped: true, isFizzSupported: false, }, { shortName: 'fabric', entryPoints: ['react-native-renderer/fabric'], isFlowTyped: true, isFizzSupported: false, }, { shortName: 'test', entryPoints: ['react-test-renderer'], isFlowTyped: true, isFizzSupported: false, }, { shortName: 'custom', entryPoints: [ 'react-reconciler', 'react-reconciler/persistent', 'react-stream', ], isFlowTyped: true, isFizzSupported: true, }, ];