We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23ee34b commit 4e0aa58Copy full SHA for 4e0aa58
packages/opencode/src/app/app.ts
@@ -69,6 +69,7 @@ export namespace App {
69
git: git !== undefined,
70
path: {
71
config: Global.Path.config,
72
+ state: Global.Path.state,
73
data,
74
root: git ?? input.cwd,
75
cwd: input.cwd,
packages/opencode/src/global/config.ts
@@ -5,10 +5,10 @@ import path from "path"
5
6
export namespace GlobalConfig {
7
export const Info = z.object({
8
- autoupdate: z.boolean().optional(),
9
- autoshare: z.boolean().optional(),
10
provider: z.string().optional(),
11
model: z.string().optional(),
+ autoupdate: z.boolean().optional(),
+ autoshare: z.boolean().optional(),
12
disabled_providers: z.array(z.string()).optional(),
13
})
14
export type Info = z.infer<typeof Info>
0 commit comments