mirror of
https://github.com/zhigang1992/Recoil.git
synced 2026-01-12 22:51:35 +08:00
22 lines
575 B
JavaScript
22 lines
575 B
JavaScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
module.exports = Object.assign(
|
|
{
|
|
immutable: 'immutable',
|
|
React: 'react',
|
|
ReactDOM: 'react-dom',
|
|
ReactDOMComet: 'react-dom',
|
|
'object-assign': 'object-assign',
|
|
|
|
ReactTestUtils: 'react-dom/lib/ReactTestUtils',
|
|
reactComponentExpect: 'react-dom/lib/reactComponentExpect',
|
|
},
|
|
require('fbjs/module-map'),
|
|
require('fbjs-scripts/third-party-module-map')
|
|
);
|