@turbo/types 1.10.16 → 1.10.17-canary.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types/config.ts +10 -0
package/package.json
CHANGED
package/src/types/config.ts
CHANGED
|
@@ -261,6 +261,16 @@ export interface RemoteCache {
|
|
|
261
261
|
* @defaultValue false
|
|
262
262
|
*/
|
|
263
263
|
signature?: boolean;
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* Indicates if the remote cache is enabled. When `false`, Turborepo will disable
|
|
267
|
+
* all remote cache operations, even if the repo has a valid token. If true, remote caching
|
|
268
|
+
* is enabled, but still requires the user to login and link their repo to a remote cache.
|
|
269
|
+
* Documentation: https://turbo.build/repo/docs/core-concepts/remote-caching
|
|
270
|
+
*
|
|
271
|
+
* @defaultValue true
|
|
272
|
+
*/
|
|
273
|
+
enabled?: boolean;
|
|
264
274
|
}
|
|
265
275
|
|
|
266
276
|
export type OutputMode =
|