diff options
| author | Aiden Cline <[email protected]> | 2025-07-31 15:02:28 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-31 15:02:28 -0500 |
| commit | 168350c981279b2127b952dcefcb2e63191900ad (patch) | |
| tree | c7eff3b71558a1de7d06f8fc2b985f9a600e73a1 | |
| parent | f5f55062f1d77d5914fec28e679881ee8ac21c6a (diff) | |
| download | opencode-168350c981279b2127b952dcefcb2e63191900ad.tar.gz opencode-168350c981279b2127b952dcefcb2e63191900ad.zip | |
fix: load global jsonc (#1479)
| -rw-r--r-- | packages/opencode/src/config/config.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index 0a9304c34..7979fbf5d 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -325,6 +325,7 @@ export namespace Config { {}, mergeDeep(await load(path.join(Global.Path.config, "config.json"))), mergeDeep(await load(path.join(Global.Path.config, "opencode.json"))), + mergeDeep(await load(path.join(Global.Path.config, "opencode.jsonc"))), ) await import(path.join(Global.Path.config, "config"), { |
