-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
47 lines (36 loc) · 1.09 KB
/
tsconfig.json
File metadata and controls
47 lines (36 loc) · 1.09 KB
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
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2023",
"lib": ["ES2023"],
"ignoreDeprecations": "6.0",
"types": ["node", "jest"],
"baseUrl": ".",
"paths": {
"@shared/common": ["libs/common/src"],
"@shared/common/*": ["libs/common/src/*"],
"@shared/socket-events": ["libs/socket-events/src"],
"@shared/socket-events/*": ["libs/socket-events/src/*"],
"@shared/types": ["libs/shared-types/src"],
"@shared/types/*": ["libs/shared-types/src/*"],
"@shared/ssh": ["libs/ssh/src"],
"@shared/ssh/*": ["libs/ssh/src/*"]
,
"@control-panel/*": ["apps/control-panel-app/src/*"],
"@control-panel": ["apps/control-panel-app/src"]
},
"declaration": true,
"incremental": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"sourceMap": true
}
}