xref: /expo/packages/@expo/cli/src/api/settings.ts (revision af644ed4)
1// This file represents temporary globals for the CLI when using the API.
2// Settings should be as minimal as possible since they are globals.
3
4export const APISettings: {
5  /** Should the CLI skip making network requests. */
6  isOffline: boolean;
7} = {
8  isOffline: false,
9};
10