/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
v16.12.0
scripts/shared/inlinedHostConfigs.js
67 строк
1 KB
Sebastian Markbåge
Add Experimental Flight Infrastructure (#16398)
30 окт 2019, 00:45
Не верифицирован
30 окт 2019, 00:45
f4e974d
Код
Авторство
О чём код?
/** * 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', 'react-dom/unstable-flight-server.node', 'react-dom/unstable-flight-client', ], isFlowTyped: true, isServerSupported: true, }, { shortName: 'dom-browser', entryPoints: [ 'react-dom/unstable-fizz.browser', 'react-dom/unstable-flight-server.browser', 'react-dom/unstable-flight-client', ], isFlowTyped: true, isServerSupported: true, }, { shortName: 'art', entryPoints: ['react-art'], isFlowTyped: false, // TODO: type it. isServerSupported: false, }, { shortName: 'native', entryPoints: ['react-native-renderer'], isFlowTyped: true, isServerSupported: false, }, { shortName: 'fabric', entryPoints: ['react-native-renderer/fabric'], isFlowTyped: true, isServerSupported: false, }, { shortName: 'test', entryPoints: ['react-test-renderer'], isFlowTyped: true, isServerSupported: false, }, { shortName: 'custom', entryPoints: [ 'react-reconciler', 'react-reconciler/persistent', 'react-flight', 'react-server', 'react-server/flight', ], isFlowTyped: true, isServerSupported: true, }, ];