-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtsconfig.json
102 lines (102 loc) · 2.37 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"compilerOptions": {
"baseUrl": ".",
"moduleResolution": "node",
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": true,
"experimentalDecorators": true,
"strict": true,
"useUnknownInCatchVariables": false,
"noFallthroughCasesInSwitch": true,
"preserveConstEnums": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"ignoreDeprecations": "5.0",
"composite": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"isolatedModules": true,
"disableReferencedProjectLoad": true,
"typeRoots": [
"./types",
"./node_modules/@types"
],
"paths": {
"*": [
"*",
"./types/*"
],
"got": [
"./node_modules/got/dist/source/index.d.ts"
]
}
},
"include": [],
"exclude": [
"**/node_modules",
"**/.*/",
"**/build/**/*"
],
"references": [
{
"path": "packages/docker-compose-js"
},
{
"path": "packages/types"
},
{
"path": "packages/utils"
},
{
"path": "packages/data-types"
},
{
"path": "packages/xlucene-parser"
},
{
"path": "packages/data-mate"
},
{
"path": "packages/xlucene-translator"
},
{
"path": "packages/elasticsearch-store"
},
{
"path": "packages/job-components"
},
{
"path": "packages/scripts"
},
{
"path": "packages/terafoundation"
},
{
"path": "packages/teraslice-messaging"
},
{
"path": "packages/teraslice"
},
{
"path": "packages/teraslice-client-js"
},
{
"path": "packages/teraslice-cli"
},
{
"path": "packages/teraslice-state-storage"
},
{
"path": "packages/teraslice-test-harness"
},
{
"path": "packages/ts-transforms"
},
{
"path": "packages/xpressions"
}
]
}