-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.build.json
53 lines (53 loc) · 1.37 KB
/
tsconfig.build.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"paths": {
"@biothings-explorer/api-response-transform": ["packages/api-response-transform"],
"biolink-model": ["packages/biolink-model"],
"biomedical_id_resolver": ["packages/biomedical_id_resolver"],
"@biothings-explorer/call-apis": ["packages/biomedical_id_resolver"],
"@biothings-explorer/node-expansion": ["packages/node-expansion"],
"@biothings-explorer/query_graph_handler": ["packages/query_graph_handler"],
"@biothings-explorer/smartapi-kg": ["packages/smartapi-kg"],
"@biothings-explorer/bte-server": ["packages/bte-server"],
"@biothings-explorer/utils": ["packages/utils"],
"@biothings-explorer/types": ["packages/types"]
}
},
"files": [],
"references": [
{
"path": "packages/bte-server"
},
{
"paths": "packages/bte-server/web-app"
},
{
"path": "packages/biolink-model"
},
{
"path": "packages/biomedical_id_resolver"
},
{
"path": "packages/smartapi-kg"
},
{
"path": "packages/api-response-transform"
},
{
"path": "packages/call-apis"
},
{
"path": "packages/query_graph_handler"
},
{
"path": "packages/node-expansion"
},
{
"path": "packages/utils"
},
{
"path": "packages/types"
}
]
}