This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
forked from plouc/nivo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.monorepo.json
47 lines (43 loc) · 1.6 KB
/
tsconfig.monorepo.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
{
"files": [],
"references": [
// Core first because everything needs it
// { "path": "./packages/core" },
// Shared next because charts need them
{ "path": "./packages/annotations" },
{ "path": "./packages/scales" },
{ "path": "./packages/axes" },
{ "path": "./packages/colors" },
{ "path": "./packages/legends" },
{ "path": "./packages/tooltip" },
{ "path": "./packages/arcs" },
{ "path": "./packages/polar-axes" },
{ "path": "./packages/voronoi" },
// Utility packages
{ "path": "./packages/generators" },
{ "path": "./packages/recompose" },
// Charts now
{ "path": "./packages/bar" },
{ "path": "./packages/bullet" },
{ "path": "./packages/bump" },
{ "path": "./packages/calendar" },
{ "path": "./packages/chord" },
{ "path": "./packages/circle-packing" },
{ "path": "./packages/funnel" },
{ "path": "./packages/heatmap" },
{ "path": "./packages/marimekko" },
{ "path": "./packages/network" },
{ "path": "./packages/pie" },
{ "path": "./packages/radar" },
{ "path": "./packages/radial-bar" },
{ "path": "./packages/sankey" },
{ "path": "./packages/scatterplot" },
{ "path": "./packages/sunburst" },
{ "path": "./packages/stream" },
{ "path": "./packages/swarmplot" },
{ "path": "./packages/treemap" },
// Static rendering and express middleware
{ "path": "./packages/static" },
{ "path": "./packages/express" }
]
}