-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
44 lines (44 loc) · 1.54 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@wjanaszek/api-auth/application": [
"libs/api-auth/application/src/index.ts"
],
"@wjanaszek/api-auth/domain": ["libs/api-auth/domain/src/index.ts"],
"@wjanaszek/api-auth/infrastructure": [
"libs/api-auth/infrastructure/src/index.ts"
],
"@wjanaszek/api-auth/shell": ["libs/api-auth/shell/src/index.ts"],
"@wjanaszek/api-auth/ui": ["libs/api-auth/ui/src/index.ts"],
"@wjanaszek/api-todo/application": [
"libs/api-todo/application/src/index.ts"
],
"@wjanaszek/api-todo/domain": ["libs/api-todo/domain/src/index.ts"],
"@wjanaszek/api-todo/infrastructure": [
"libs/api-todo/infrastructure/src/index.ts"
],
"@wjanaszek/api-todo/shell": ["libs/api-todo/shell/src/index.ts"],
"@wjanaszek/api-todo/ui": ["libs/api-todo/ui/src/index.ts"],
"@wjanaszek/shared/application": ["libs/shared/application/src/index.ts"],
"@wjanaszek/shared/domain": ["libs/shared/domain/src/index.ts"],
"@wjanaszek/shared/infrastructure": [
"libs/shared/infrastructure/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}