forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
90 lines (90 loc) · 2.11 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
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
{
"extends": "./configs/base.tsconfig",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@theia/application-package": [
"dev-packages/application-package/src"
],
"@theia/application-package/lib/*": [
"dev-packages/application-package/src/*"
],
"@theia/core": [
"packages/core/src/common"
],
"@theia/core/lib/*": [
"packages/core/src/*"
],
"@theia/extension-manager/lib/*": [
"packages/extension-manager/src/*"
],
"@theia/filesystem/lib/*": [
"packages/filesystem/src/*"
],
"mv": [
"packages/filesystem/src/typings/mv"
],
"trash": [
"packages/filesystem/src/typings/trash"
],
"@theia/navigator/lib/*": [
"packages/navigator/src/*"
],
"@theia/preferences-api": [
"packages/preferences-api/src/common"
],
"@theia/preferences-api/lib/*": [
"packages/preferences-api/src/*"
],
"@theia/preferences/lib/*": [
"packages/preferences/src/*"
],
"@theia/workspace/lib/*": [
"packages/workspace/src/*"
],
"@theia/terminal/lib/*": [
"packages/terminal/src/*"
],
"@theia/languages/lib/*": [
"packages/languages/src/*"
],
"@theia/editor/lib/*": [
"packages/editor/src/*"
],
"@theia/monaco/lib/*": [
"packages/monaco/src/*"
],
"@theia/cpp/lib/*": [
"packages/cpp/src/*"
],
"@theia/java/lib/*": [
"packages/java/src/*"
],
"@theia/python/lib/*": [
"packages/python/src/*"
],
"@theia/git/lib/*": [
"git/src/*"
],
"@theia/go/lib/*": [
"packages/go/src/*"
],
"@theia/process/lib*": [
"packages/process/src/*"
],
"@theia/markers/lib/*": [
"packages/markers/src/*"
],
"@theia/outline/lib/*": [
"packages/outline/src/*"
],
"@theia/messages/lib/*": [
"packages/messages/src/*"
]
}
},
"include": [
"dev-packages/*/src",
"packages/*/src"
]
}