feat(js): add helper function to create Arrow Table with schema (#838)

Support to make Apache Arrow Table from an array of javascript Records,
with optionally provided Schema.
This commit is contained in:
Lei Xu
2024-01-22 11:49:44 -08:00
committed by Weston Pace
parent b699b5c42b
commit d8befeeea2
4 changed files with 315 additions and 20 deletions

View File

@@ -1,10 +1,14 @@
{
"include": ["src/**/*.ts"],
"include": [
"src/**/*.ts",
"src/*.ts"
],
"compilerOptions": {
"target": "es2016",
"target": "ES2020",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"strict": true
"strict": true,
// "esModuleInterop": true,
}
}
}