-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
54 lines (54 loc) · 2.33 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
{
"compileOnSave": false,
"angularCompilerOptions": {
"strictTemplates": true
},
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"strict": true,
"noUnusedLocals": false,
"noErrorTruncation": true,
"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": {
"@type-safe-full-stack/api-interfaces": ["libs/api-interfaces/src/index.ts"],
"@type-safe-full-stack/backend/core/application-services": [
"libs/backend/core/application-services/src/index.ts"
],
"@type-safe-full-stack/backend/core/domain-services": [
"libs/backend/core/domain-services/src/index.ts"
],
"@type-safe-full-stack/backend/core/domain": ["libs/backend/core/domain/src/index.ts"],
"@type-safe-full-stack/backend/infrastructure": ["libs/backend/infrastructure/src/index.ts"],
"@type-safe-full-stack/backend/shell": ["libs/backend/shell/src/index.ts"],
"@type-safe-full-stack/backend/ui-rest": ["libs/backend/ui-rest/src/index.ts"],
"@type-safe-full-stack/shared/domain": ["libs/shared/domain/src/index.ts"],
"@type-safe-full-stack/shared/utils": ["libs/shared/utils/src/index.ts"],
"@type-safe-full-stack/frontend/public/data-access": ["libs/frontend/public/data-access/src/index.ts"],
"@type-safe-full-stack/frontend/public/feature-login": [
"libs/frontend/public/feature-login/src/index.ts"
],
"@type-safe-full-stack/frontend/public/shell": ["libs/frontend/public/shell/src/index.ts"],
"@type-safe-full-stack/frontend/portal/data-access": ["libs/frontend/portal/data-access/src/index.ts"],
"@type-safe-full-stack/frontend/portal/feature-home": [
"libs/frontend/portal/feature-home/src/index.ts"
],
"@type-safe-full-stack/frontend/portal/shell": ["libs/frontend/portal/shell/src/index.ts"],
"@type-safe-full-stack/frontend/shared/data-access": ["libs/frontend/shared/data-access/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}