blob: c1e02ca013978fa3eafd43b0e97eb08d0c09a2a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"]
}
|