This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.base.json
118 lines (118 loc) · 4.21 KB
/
tsconfig.base.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2022",
"module": "esnext",
"lib": ["es2022", "dom", "esnext.asynciterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@ramp/features/ramp/analytes-from-pathways": [
"libs/features/ramp/analytes-from-pathways/src/index.ts"
],
"@ramp/features/ramp/chemical-enrichment": [
"libs/features/ramp/chemical-enrichment/src/index.ts"
],
"@ramp/features/ramp/classes-from-metabolites": [
"libs/features/ramp/classes-from-metabolites/src/index.ts"
],
"@ramp/features/ramp/common-reaction-analytes": [
"libs/features/ramp/common-reaction-analytes/src/index.ts"
],
"@ramp/features/ramp/metabolites-from-ontologies": [
"libs/features/ramp/metabolites-from-ontologies/src/index.ts"
],
"@ramp/features/ramp/ontologies-from-metabolites": [
"libs/features/ramp/ontologies-from-metabolites/src/index.ts"
],
"@ramp/features/ramp/pathway-enrichment": [
"libs/features/ramp/pathway-enrichment/src/index.ts"
],
"@ramp/features/ramp/pathways-from-analytes": [
"libs/features/ramp/pathways-from-analytes/src/index.ts"
],
"@ramp/features/ramp/properties-from-metabolites": [
"libs/features/ramp/properties-from-metabolites/src/index.ts"
],
"@ramp/features/ramp/ramp-about": [
"libs/features/ramp/ramp-about/src/index.ts"
],
"@ramp/features/ramp/ramp-api": [
"libs/features/ramp/ramp-api/src/index.ts"
],
"@ramp/features/ramp/ramp-header": [
"libs/features/ramp/ramp-header/src/index.ts"
],
"@ramp/features/ramp/ramp-home": [
"libs/features/ramp/ramp-home/src/index.ts"
],
"@ramp/models/ramp-models": ["libs/models/ramp-models/src/index.ts"],
"@ramp/shared/ncats/data-download": [
"libs/shared/ncats/data-download/src/index.ts"
],
"@ramp/shared/ncats/ncats-footer": [
"libs/shared/ncats/ncats-footer/src/index.ts"
],
"@ramp/shared/ramp/full-banner": [
"libs/shared/ramp/full-banner/src/index.ts"
],
"@ramp/shared/ramp/input-row": [
"libs/shared/ramp/input-row/src/index.ts"
],
"@ramp/shared/ramp/page-core": [
"libs/shared/ramp/page-core/src/index.ts"
],
"@ramp/shared/ramp/query-page": [
"libs/shared/ramp/query-page/src/index.ts"
],
"@ramp/shared/ui/complete-dialog": [
"libs/shared/ui/complete-dialog/src/index.ts"
],
"@ramp/shared/ui/description-panel": [
"libs/shared/ui/description-panel/src/index.ts"
],
"@ramp/shared/ui/error-dialog": [
"libs/shared/ui/error-dialog/src/index.ts"
],
"@ramp/shared/ui/feedback-panel": [
"libs/shared/ui/feedback-panel/src/index.ts"
],
"@ramp/shared/ui/filter-panel": [
"libs/shared/ui/filter-panel/src/index.ts"
],
"@ramp/shared/ui/header-template": [
"libs/shared/ui/header-template/src/index.ts"
],
"@ramp/shared/ui/highlight": ["libs/shared/ui/highlight/src/index.ts"],
"@ramp/shared/ui/loading-spinner": [
"libs/shared/ui/loading-spinner/src/index.ts"
],
"@ramp/shared/ui/ncats-datatable": [
"libs/shared/ui/ncats-datatable/src/index.ts"
],
"@ramp/shared/ui/ncats-structure-viewer": [
"libs/shared/ui/ncats-structure-viewer/src/index.ts"
],
"@ramp/shared/visualizations/upset-chart": [
"libs/shared/visualizations/upset-chart/src/index.ts"
],
"@ramp/stores/ramp-store": ["libs/stores/ramp-store/src/index.ts"],
"features/ramp/reaction-classes-from-analytes": [
"libs/features/ramp/reaction-classes-from-analytes/src/index.ts"
],
"features/ramp/reactions-from-analytes": [
"libs/features/ramp/reactions-from-analytes/src/index.ts"
]
},
"allowSyntheticDefaultImports": true
},
"exclude": ["node_modules", "tmp"]
}