diff options
| author | Dax <[email protected]> | 2026-03-10 13:11:36 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-10 13:11:36 -0400 |
| commit | bb232247d094b22d497a036c21d4c4a722700a38 (patch) | |
| tree | 27c4e2ccf625a42c8dc8cd18cc50ec39bff9399b /packages/plugin/src/example.ts | |
| parent | 94c128f73b05bb4b14134974d9db8eb7eb671b92 (diff) | |
| download | opencode-bb232247d094b22d497a036c21d4c4a722700a38.tar.gz opencode-bb232247d094b22d497a036c21d4c4a722700a38.zip | |
Fix ESM imports for @opencode-ai/plugin (#16916)
Diffstat (limited to 'packages/plugin/src/example.ts')
| -rw-r--r-- | packages/plugin/src/example.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/plugin/src/example.ts b/packages/plugin/src/example.ts index 94745a37b..1cf042fe9 100644 --- a/packages/plugin/src/example.ts +++ b/packages/plugin/src/example.ts @@ -1,5 +1,5 @@ -import { Plugin } from "./index" -import { tool } from "./tool" +import { Plugin } from "./index.js" +import { tool } from "./tool.js" export const ExamplePlugin: Plugin = async (ctx) => { return { |
