]> git.proxmox.com Git - ceph.git/blob - ceph/src/arrow/js/tsconfig.json
c1e02ca013978fa3eafd43b0e97eb08d0c09a2a3
[ceph.git] / ceph / src / arrow / js / tsconfig.json
1 {
2 "extends": "./tsconfig/tsconfig.base.json",
3 "formatCodeOptions": {
4 "tabSize": 2,
5 "indentSize": 2
6 },
7 "compilerOptions": {
8 "target": "esnext",
9 "module": "commonjs",
10 "noEmit": true,
11 "esModuleInterop": true,
12 "baseUrl": "./",
13 "paths": {
14 "apache-arrow": ["src/Arrow.node"],
15 "apache-arrow/*": ["src/*"]
16 }
17 },
18 "include": ["src/**/*.ts", "test/**/*.ts", "perf/**/*.ts"]
19 }