Fix ESM imports for @opencode-ai/plugin (#16916)

This commit is contained in:
Dax 2026-03-10 13:11:36 -04:00 committed by GitHub
commit bb232247d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 7 deletions

View file

@ -12,10 +12,10 @@ import type {
Config,
} from "@opencode-ai/sdk"
import type { BunShell } from "./shell"
import { type ToolDefinition } from "./tool"
import type { BunShell } from "./shell.js"
import { type ToolDefinition } from "./tool.js"
export * from "./tool"
export * from "./tool.js"
export type ProviderContext = {
source: "env" | "config" | "custom" | "api"