-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
41 lines (41 loc) · 1.06 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
{
"README": [
"THIS FILE SHOULD NOT BE USED FOR COMPILATION.",
"THIS FILE IS WRITTEN FOR TSSERVER TO UNDERSTAND OUR MONOREPO.",
"SEE `compile.tsconfig.json` FOR COMPILATION CONFIGURATION."
],
"extends": "./configs/base.tsconfig.json",
"include": [
"packages/*/src",
"examples/*/src",
"examples/browser/src-gen"
],
"compilerOptions": {
"allowJs": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@theia/example-browser/*": [
"examples/browser/*"
],
"@theia/example-electron/*": [
"examples/electron/*"
],
"@eclipse-cdt-cloud/clangd-contexts-cli/lib/*": [
"examples/clangd-contexts-cli/src/*"
],
"@eclipse-cdt-cloud/clangd-contexts/lib/*": [
"packages/clangd-contexts/src/*"
],
"@clangd-contexts/example-electron/*": [
"examples/electron/*"
],
"@clangd-contexts/example-browser/*": [
"examples/browser/*"
],
"cdtcloud-clangd-contexts-ext/lib/*": [
"examples/clangd-contexts-ext/src/*"
]
}
}
}