mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-25 14:29:56 +00:00
Use Napi to write a Node.js SDK that follows Polars for better maintainability, while keeping most of the logic in Rust.
31 lines
575 B
JSON
31 lines
575 B
JSON
{
|
|
"include": [
|
|
"vectordb/*.ts",
|
|
"vectordb/**/*.ts",
|
|
"vectordb/*.js",
|
|
],
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
},
|
|
"exclude": [
|
|
"./dist/*",
|
|
],
|
|
"typedocOptions": {
|
|
"entryPoints": [
|
|
"vectordb/index.ts"
|
|
],
|
|
"out": "../docs/src/javascript/",
|
|
"visibilityFilters": {
|
|
"protected": false,
|
|
"private": false,
|
|
"inherited": true,
|
|
"external": false,
|
|
}
|
|
}
|
|
} |