-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
69 lines (69 loc) · 1.8 KB
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": [
"es2020",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strict": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"baseUrl": ".",
"paths": {
"@benzinga/containers": [
"libs/vanilla-utils/containers/src/index.ts"
],
"@benzinga/helper-functions": [
"libs/vanilla-utils/helper-functions/src/index.ts"
],
"@benzinga/iter": [
"libs/vanilla-utils/iter/src/index.ts"
],
"@benzinga/logging-manager": [
"libs/managers/logging/src/index.ts"
],
"@benzinga/restful-client": [
"libs/vanilla-utils/restful-client/src/index.ts"
],
"@benzinga/safe-await": [
"libs/vanilla-utils/safe-await/src/index.ts"
],
"@benzinga/session": [
"libs/vanilla-utils/session/src/index.ts"
],
"@benzinga/session-context": [
"libs/react-utils/session-context/src/index.ts"
],
"@benzinga/socket-client": [
"libs/vanilla-utils/socket-client/src/index.ts"
],
"@benzinga/subscribable": [
"libs/vanilla-utils/subscribable/src/index.ts"
],
"@benzinga/use-subscribable": [
"libs/react-utils/use-subscribable/src/index.ts"
],
"@benzinga/widget-tools": [
"libs/react-utils/widget-tools/src/index.ts"
]
}
},
"exclude": [
"node_modules",
"tmp"
]
}