forked from plouc/nivo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.monorepo.json
36 lines (33 loc) · 1.18 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
{
"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/voronoi" },
// Utility package
{ "path": "./packages/generators" },
{ "path": "./packages/recompose" },
// Charts now
{ "path": "./packages/bar" },
{ "path": "./packages/bullet" },
{ "path": "./packages/calendar" },
{ "path": "./packages/circle-packing" },
{ "path": "./packages/funnel" },
{ "path": "./packages/marimekko" },
{ "path": "./packages/pie" },
{ "path": "./packages/radar" },
{ "path": "./packages/sankey" },
{ "path": "./packages/scatterplot" },
{ "path": "./packages/sunburst" },
{ "path": "./packages/stream" },
{ "path": "./packages/swarmplot" }
]
}