mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 22:10:14 +00:00
de1d605253
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/44477 Changelog: [Internal] TSIA Reviewed By: huntie Differential Revision: D57091620 fbshipit-source-id: 54fd105069ba0a34b9ab5bd12295e4e9641492a3
17 lines
366 B
JavaScript
17 lines
366 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.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = () /*: Array<string> */ => [
|
|
require.resolve('./console.js'),
|
|
require.resolve('./error-guard.js'),
|
|
];
|