forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompile.tsconfig.json
129 lines (129 loc) · 3.06 KB
/
compile.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
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
119
120
121
122
123
124
125
126
127
128
129
{
"extends": "../../configs/base.tsconfig",
"compilerOptions": {
"composite": true,
"outDir": "lib/test"
},
"include": [
"test"
],
"references": [
{
"path": "../../dev-packages/cli/compile.tsconfig.json"
},
{
"path": "../api-samples/compile.tsconfig.json"
},
{
"path": "../../packages/callhierarchy/compile.tsconfig.json"
},
{
"path": "../../packages/console/compile.tsconfig.json"
},
{
"path": "../../packages/core/compile.tsconfig.json"
},
{
"path": "../../packages/debug/compile.tsconfig.json"
},
{
"path": "../../packages/editor/compile.tsconfig.json"
},
{
"path": "../../packages/editor-preview/compile.tsconfig.json"
},
{
"path": "../../packages/file-search/compile.tsconfig.json"
},
{
"path": "../../packages/filesystem/compile.tsconfig.json"
},
{
"path": "../../packages/getting-started/compile.tsconfig.json"
},
{
"path": "../../packages/git/compile.tsconfig.json"
},
{
"path": "../../packages/json/compile.tsconfig.json"
},
{
"path": "../../packages/keymaps/compile.tsconfig.json"
},
{
"path": "../../packages/languages/compile.tsconfig.json"
},
{
"path": "../../packages/markers/compile.tsconfig.json"
},
{
"path": "../../packages/messages/compile.tsconfig.json"
},
{
"path": "../../packages/metrics/compile.tsconfig.json"
},
{
"path": "../../packages/mini-browser/compile.tsconfig.json"
},
{
"path": "../../packages/monaco/compile.tsconfig.json"
},
{
"path": "../../packages/navigator/compile.tsconfig.json"
},
{
"path": "../../packages/outline-view/compile.tsconfig.json"
},
{
"path": "../../packages/output/compile.tsconfig.json"
},
{
"path": "../../packages/plugin-dev/compile.tsconfig.json"
},
{
"path": "../../packages/plugin-ext/compile.tsconfig.json"
},
{
"path": "../../packages/plugin-ext-vscode/compile.tsconfig.json"
},
{
"path": "../../packages/preferences/compile.tsconfig.json"
},
{
"path": "../../packages/preview/compile.tsconfig.json"
},
{
"path": "../../packages/process/compile.tsconfig.json"
},
{
"path": "../../packages/scm/compile.tsconfig.json"
},
{
"path": "../../packages/scm-extra/compile.tsconfig.json"
},
{
"path": "../../packages/search-in-workspace/compile.tsconfig.json"
},
{
"path": "../../packages/task/compile.tsconfig.json"
},
{
"path": "../../packages/terminal/compile.tsconfig.json"
},
{
"path": "../../packages/typehierarchy/compile.tsconfig.json"
},
{
"path": "../../packages/userstorage/compile.tsconfig.json"
},
{
"path": "../../packages/variable-resolver/compile.tsconfig.json"
},
{
"path": "../../packages/workspace/compile.tsconfig.json"
},
{
"path": "../../packages/vsx-registry/compile.tsconfig.json"
}
]
}