forked from vitessce/vitessce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
77 lines (77 loc) · 2.76 KB
/
tsconfig.json
File metadata and controls
77 lines (77 loc) · 2.76 KB
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
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"jsx": "react-jsx",
"moduleResolution": "Bundler",
"strict": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": false,
"resolveJsonModule": true,
"isolatedModules": true,
"incremental": true,
"declaration": true,
"declarationMap": true
},
"references": [
{ "path": "packages/types" },
{ "path": "examples/configs" },
{ "path": "examples/plugins" },
{ "path": "packages/config" },
{ "path": "packages/constants-internal" },
{ "path": "packages/globals" },
{ "path": "packages/constants" },
{ "path": "packages/error" },
{ "path": "packages/file-types/abstract" },
{ "path": "packages/file-types/csv" },
{ "path": "packages/file-types/glb" },
{ "path": "packages/file-types/json" },
{ "path": "packages/file-types/ome-tiff" },
{ "path": "packages/styles" },
{ "path": "packages/gl" },
{ "path": "packages/legend" },
{ "path": "packages/plugins" },
{ "path": "packages/utils/other-utils" },
{ "path": "packages/schemas" },
{ "path": "packages/tooltip" },
{ "path": "packages/utils/export-utils" },
{ "path": "packages/utils/sets-utils" },
{ "path": "packages/utils/spatial-utils" },
{ "path": "packages/utils/image-utils" },
{ "path": "packages/utils/zarr-utils" },
{ "path": "packages/vit-s" },
{ "path": "packages/file-types/zarr" },
{ "path": "packages/file-types/spatial-zarr" },
{ "path": "packages/vega" },
{ "path": "packages/view-types/description" },
{ "path": "packages/view-types/feature-list" },
{ "path": "packages/view-types/genomic-profiles" },
{ "path": "packages/view-types/heatmap" },
{ "path": "packages/view-types/layer-controller" },
{ "path": "packages/view-types/layer-controller-beta" },
{ "path": "packages/view-types/link-controller" },
{ "path": "packages/view-types/obs-sets-manager" },
{ "path": "packages/view-types/scatterplot" },
{ "path": "packages/view-types/scatterplot-embedding" },
{ "path": "packages/view-types/scatterplot-gating" },
{ "path": "packages/view-types/spatial" },
{ "path": "packages/view-types/spatial-three" },
{ "path": "packages/view-types/spatial-accelerated" },
{ "path": "packages/view-types/spatial-beta" },
{ "path": "packages/view-types/statistical-plots" },
{ "path": "packages/view-types/status" },
{ "path": "packages/view-types/biomarker-select" },
{ "path": "packages/view-types/neuroglancer" },
{ "path": "packages/main/all" },
{ "path": "packages/launcher" },
{ "path": "packages/main/dev" },
{ "path": "packages/main/prod" }
],
"files": []
}