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/tsconfig.json | |
| parent | 94c128f73b05bb4b14134974d9db8eb7eb671b92 (diff) | |
| download | opencode-bb232247d094b22d497a036c21d4c4a722700a38.tar.gz opencode-bb232247d094b22d497a036c21d4c4a722700a38.zip | |
Fix ESM imports for @opencode-ai/plugin (#16916)
Diffstat (limited to 'packages/plugin/tsconfig.json')
| -rw-r--r-- | packages/plugin/tsconfig.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/plugin/tsconfig.json b/packages/plugin/tsconfig.json index 58072c81c..117381878 100644 --- a/packages/plugin/tsconfig.json +++ b/packages/plugin/tsconfig.json @@ -3,9 +3,9 @@ "extends": "@tsconfig/node22/tsconfig.json", "compilerOptions": { "outDir": "dist", - "module": "preserve", + "module": "nodenext", "declaration": true, - "moduleResolution": "bundler", + "moduleResolution": "nodenext", "lib": ["es2022", "dom", "dom.iterable"] }, "include": ["src"] |
