react-native-test-app
Version:
react-native-test-app provides a test app for all supported platforms as a package
17 lines (15 loc) • 386 B
JavaScript
// @ts-check
/**
* @import { ConfigPlugin } from "@expo/config-plugins";
* @import { ProjectInfo } from "../types.js";
* @typedef {Omit<ProjectInfo, "appJsonPath">} Internals
*/
/** @type {ConfigPlugin<Internals>} */
export const withInternal = (config, internals) => {
config._internal = {
isDebug: false,
...config._internal,
...internals,
};
return config;
};