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