-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
71 lines (71 loc) · 2.78 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": false,
"incremental": true,
"module": "commonjs",
"moduleResolution": "Node",
"noFallthroughCasesInSwitch": false,
"noImplicitAny": false,
"noImplicitThis": false,
"outDir": "./dist",
"paths": {
"#testlib": ["testlib"],
"#testlib/*": ["testlib/*"],
"#account-api": ["apps/account-api/src"],
"#account-api/*": ["apps/account-api/src/*"],
"#account-worker": ["apps/account-worker/src"],
"#account-worker/*": ["apps/account-worker/src/*"],
"#content-publishing-api": ["apps/content-publishing-api/src"],
"#content-publishing-api/*": ["apps/content-publishing-api/src/*"],
"#content-publishing-worker": ["apps/content-publishing-worker/src"],
"#content-publishing-worker/*": ["apps/content-publishing-worker/src/*"],
"#content-watcher": ["apps/content-watcher/src"],
"#content-watcher/*": ["apps/content-watcher/src/*"],
"#graph-api": ["apps/graph-api/src"],
"#graph-api/*": ["apps/graph-api/src/*"],
"#graph-worker": ["apps/graph-worker/src"],
"#graph-worker/*": ["apps/graph-worker/src/*"],
"#account-lib": ["libs/account-lib/src"],
"#account-lib/*": ["libs/account-lib/src/*"],
"#content-publishing-lib": ["libs/content-publishing-lib/src"],
"#content-publishing-lib/*": ["libs/content-publishing-lib/src/*"],
"#content-watcher-lib": ["libs/content-watcher-lib/src"],
"#content-watcher-lib/*": ["libs/content-watcher-lib/src/*"],
"#graph-lib": ["libs/graph-lib/src"],
"#graph-lib/*": ["libs/graph-lib/src/*"],
"#types": ["libs/types/src"],
"#types/*": ["libs/types/src/*"],
"#utils": ["libs/utils/src"],
"#utils/*": ["libs/utils/src/*"],
"#config": ["libs/config/src"],
"#config/*": ["libs/config/src/*"],
"#queue": ["libs/queue/src"],
"#queue/*": ["libs/queue/src/*"],
"#cache": ["libs/cache/src"],
"#cache/*": ["libs/cache/src/*"],
"#blockchain": ["libs/blockchain/src"],
"#blockchain/*": ["libs/blockchain/src/*"],
"#consumer": ["libs/consumer/src"],
"#consumer/*": ["libs/consumer/src/*"],
"#storage": ["libs/storage/src"],
"#storage/*": ["libs/storage/src/*"],
"#openapi": ["libs/openapi/src"],
"#openapi/*": ["libs/openapi/src/*"]
},
"removeComments": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictBindCallApply": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"target": "ES2023"
}
}