Skip to content

Commit

Permalink
fix: tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
thucpn committed Jan 21, 2025
1 parent 6e674c8 commit 9b951a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/llamaindex/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export { type VertexGeminiSessionOptions } from "./llm/gemini/types.js";
export { GeminiVertexSession } from "./llm/gemini/vertex.js";

// Expose AzureDynamicSessionTool for node.js runtime only
export { AzureDynamicSessionTool } from "@llamaindex/azure";
export { JinaAIEmbedding } from "./embeddings/JinaAIEmbedding.js";
export { AzureDynamicSessionTool } from "./tools/AzureDynamicSessionTool.node.js";

// Don't export vector store modules for non-node.js runtime on top level,
// as we cannot guarantee that they will work in other environments
Expand Down
6 changes: 1 addition & 5 deletions packages/llamaindex/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@
"skipLibCheck": true,
"strict": true
},
"include": [
"./src",
"../providers/storage/azure/src/chatStore",
"../providers/storage/azure/src/kvStore"
],
"include": ["./src"],
"exclude": ["node_modules"],
"references": [
{
Expand Down

0 comments on commit 9b951a4

Please sign in to comment.