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
27 lines
651 B
JSON
27 lines
651 B
JSON
{
|
|
"include": ["lancedb/*.ts", "lancedb/**/*.ts", "lancedb/*.js"],
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "Node"
|
|
},
|
|
"exclude": ["./dist/*", "./examples/*"],
|
|
"typedocOptions": {
|
|
"entryPoints": ["lancedb/index.ts"],
|
|
"out": "../docs/src/javascript/",
|
|
"visibilityFilters": {
|
|
"protected": false,
|
|
"private": false,
|
|
"inherited": true,
|
|
"external": false
|
|
}
|
|
}
|
|
}
|