forked from finos/legend-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
58 lines (58 loc) · 1.93 KB
/
tsconfig.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
{
// This will prevent an incorrect invocation of `tsc` without `--build` from
// trying to build the entire packages folder source files as one compilation
// (which will fail, but drop a bunch of .js files in random places as an annoying side effect).
// See https://github.com/RyanCavanaugh/learn-a
"files": [],
"references": [
{ "path": "packages/legend-manual-tests" },
{ "path": "packages/legend-shared" },
{ "path": "packages/legend-tracer-extension-zipkin" },
{ "path": "packages/legend-model-storage" },
{ "path": "packages/legend-server-sdlc" },
{ "path": "packages/legend-server-depot" },
{ "path": "packages/legend-graph" },
{ "path": "packages/legend-art" },
{ "path": "packages/legend-application" },
// studio
{ "path": "packages/legend-studio" },
{ "path": "packages/legend-studio-app" },
{ "path": "packages/legend-studio-deployment" },
{ "path": "packages/legend-studio-extension-management-toolkit" },
{ "path": "packages/legend-studio-extension-query-builder" },
// query
{ "path": "packages/legend-query" },
{ "path": "packages/legend-query-app" },
{ "path": "packages/legend-query-deployment" },
// taxonomy
{ "path": "packages/legend-taxonomy" },
{ "path": "packages/legend-taxonomy-app" },
{ "path": "packages/legend-taxonomy-deployment" },
// extensions
{
"path": "packages/legend-graph-extension-collection"
},
{
"path": "packages/legend-extension-dsl-text"
},
{
"path": "packages/legend-extension-dsl-diagram"
},
{
"path": "packages/legend-extension-dsl-data-space"
},
{
"path": "packages/legend-extension-external-format-json-schema"
},
{
"path": "packages/legend-extension-external-store-service"
},
{
"path": "packages/legend-extension-external-language-morphir"
},
// fixtures
{
"path": "fixtures/legend-mock-server"
}
]
}