summaryrefslogtreecommitdiffstats
path: root/src/arrow/js/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/arrow/js/tsconfig.json')
-rw-r--r--src/arrow/js/tsconfig.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/arrow/js/tsconfig.json b/src/arrow/js/tsconfig.json
new file mode 100644
index 000000000..c1e02ca01
--- /dev/null
+++ b/src/arrow/js/tsconfig.json
@@ -0,0 +1,19 @@
+{
+ "extends": "./tsconfig/tsconfig.base.json",
+ "formatCodeOptions": {
+ "tabSize": 2,
+ "indentSize": 2
+ },
+ "compilerOptions": {
+ "target": "esnext",
+ "module": "commonjs",
+ "noEmit": true,
+ "esModuleInterop": true,
+ "baseUrl": "./",
+ "paths": {
+ "apache-arrow": ["src/Arrow.node"],
+ "apache-arrow/*": ["src/*"]
+ }
+ },
+ "include": ["src/**/*.ts", "test/**/*.ts", "perf/**/*.ts"]
+}