mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
39757da650
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48441 Changelog: [internal] Adds a new environment variable (`FANTOM_ENABLE_CPP_DEBUGGING`) to enable C++ debugging via `fdb`. Reviewed By: RSNara Differential Revision: D67683048 fbshipit-source-id: d074a1a063c5da6b048d5456036e83cc14245eaf
19 lines
505 B
JavaScript
19 lines
505 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
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
export const printCLIOutput: boolean = Boolean(process.env.FANTOM_PRINT_OUTPUT);
|
|
|
|
export const logCommands: boolean = Boolean(process.env.FANTOM_LOG_COMMANDS);
|
|
|
|
export const enableCppDebugging: boolean = Boolean(
|
|
process.env.FANTOM_ENABLE_CPP_DEBUGGING,
|
|
);
|