-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Mikyo King <[email protected]>
- Loading branch information
1 parent
0cef233
commit 16a3815
Showing
10 changed files
with
143 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
"@arizeai/openinference-instrumentation-langchain": major | ||
"@arizeai/openinference-instrumentation-openai": major | ||
"@arizeai/openinference-semantic-conventions": major | ||
"@arizeai/openinference-vercel": major | ||
"@arizeai/openinference-core": major | ||
--- | ||
|
||
ESM support | ||
|
||
Packages are now shipped as "Dual Package" meaning that ESM and CJS module resolution | ||
should be supported for each package. | ||
|
||
Support is described as "experimental" because opentelemetry describes support for autoinstrumenting | ||
ESM projects as "ongoing". See https://github.com/open-telemetry/opentelemetry-js/blob/61d5a0e291db26c2af638274947081b29db3f0ca/doc/esm-support.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from "./trace"; | ||
export * from "./utils"; | ||
export type * from "./utils/types"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
{ | ||
"extends": "./tsconfig.base.es5.json", | ||
"extends": "./tsconfig.base.esnext.json", | ||
"compilerOptions": { | ||
"module": "ES6", | ||
"moduleResolution": "node" | ||
"target": "ES2020", | ||
"moduleResolution": "node10", | ||
"module": "ES2020" | ||
}, | ||
"tsc-alias": { | ||
"verbose": false, | ||
"resolveFullPaths": true | ||
} | ||
} |