mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-22 21:09:58 +00:00
This is done as setup for a PR that will fix the OpenAI dependency issue. * [x] FTS examples * [x] Setup mock openai * [x] Ran `npm audit fix` * [x] sentences embeddings test * [x] Double check formatting of docs examples
9 lines
264 B
JavaScript
9 lines
264 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "node",
|
|
moduleDirectories: ["node_modules", "./dist"],
|
|
moduleFileExtensions: ["js", "ts"],
|
|
modulePathIgnorePatterns: ["<rootDir>/examples/"],
|
|
};
|