-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
64 lines (64 loc) · 2.43 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@todo-app/api-interfaces": ["libs/api-interfaces/src/index.ts"],
"@todo-app/server/user/core/domain": [
"libs/server/user/core/domain/src/index.ts"
],
"@todo-app/server/user/shell": ["libs/server/user/shell/src/index.ts"],
"@todo-app/server/user/infrastructure": [
"libs/server/user/infrastructure/src/index.ts"
],
"@todo-app/shared/util-array": ["libs/shared/util-array/src/index.ts"],
"@todo-app/server/shared/infrastructure": [
"libs/server/shared/infrastructure/src/index.ts"
],
"@todo-app/server/shared/port": ["libs/server/shared/port/src/index.ts"],
"@todo-app/shared/util-uuid": ["libs/shared/util-uuid/src/index.ts"],
"@todo-app/server/eisenhower-matrix/core/domain": [
"libs/server/eisenhower-matrix/core/domain/src/index.ts"
],
"@todo-app/server/eisenhower-matrix/shell": [
"libs/server/eisenhower-matrix/shell/src/index.ts"
],
"@todo-app/server/user/ui-rest": [
"libs/server/user/ui-rest/src/index.ts"
],
"@todo-app/server/user/ui-cli": ["libs/server/user/ui-cli/src/index.ts"],
"@todo-app/server/eisenhower-matrix/ui-rest": [
"libs/server/eisenhower-matrix/ui-rest/src/index.ts"
],
"@todo-app/server/user/core/domain-services": [
"libs/server/user/core/domain-services/src/index.ts"
],
"@todo-app/server/eisenhower-matrix/core/domain-services": [
"libs/server/eisenhower-matrix/core/domain-services/src/index.ts"
],
"@todo-app/server/user/core/application-services": [
"libs/server/user/core/application-services/src/index.ts"
],
"@todo-app/server/eisenhower-matrix/core/application-services": [
"libs/server/eisenhower-matrix/core/application-services/src/index.ts"
],
"@todo-app/server/eisenhower-matrix/infrastructure": [
"libs/server/eisenhower-matrix/infrastructure/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}