-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
86 lines (86 loc) · 3.06 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"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": {
"@ng-tests/b-cal/shared/assets": [
"libs/b-cal/shared/assets/src/index.ts"
],
"@ng-tests/b-cal/shared/data-access": [
"libs/b-cal/shared/data-access/src/index.ts"
],
"@ng-tests/b-cal/shared/domain": [
"libs/b-cal/shared/domain/src/index.ts"
],
"@ng-tests/b-cal/shared/util": ["libs/b-cal/shared/util/src/index.ts"],
"@ng-tests/b-cal/shell/mobile/feature": [
"libs/b-cal/shell/mobile/feature/src/index.ts"
],
"@ng-tests/b-cal/shell/web/feature": [
"libs/b-cal/shell/web/feature/src/index.ts"
],
"@ng-tests/b-cal/year/mobile/feature": [
"libs/b-cal/year/mobile/feature/src/index.ts"
],
"@ng-tests/b-cal/year/mobile/ui": [
"libs/b-cal/year/mobile/ui/src/index.ts"
],
"@ng-tests/b-cal/year/shared/data-access": [
"libs/b-cal/year/shared/data-access/src/index.ts"
],
"@ng-tests/b-cal/year/shared/util": [
"libs/b-cal/year/shared/util/src/index.ts"
],
"@ng-tests/b-cal/year/web/feature": [
"libs/b-cal/year/web/feature/src/index.ts"
],
"@ng-tests/b-cal/year/web/ui": ["libs/b-cal/year/web/ui/src/index.ts"],
"@ng-tests/shared/data-access": ["libs/shared/data-access/src/index.ts"],
"@ng-tests/shared/domain": ["libs/shared/domain/src/index.ts"],
"@ng-tests/shared/entity-store": [
"libs/shared/entity-store/src/index.ts"
],
"@ng-tests/shared/environments": [
"libs/shared/environments/src/index.ts"
],
"@ng-tests/shared/styles/bootstrap": [
"libs/shared/styles/bootstrap/src/index.ts"
],
"@ng-tests/shared/styles/material": [
"libs/shared/styles/material/src/index.ts"
],
"@ng-tests/shared/styles/theme-picker/data-access": [
"libs/shared/styles/theme-picker/data-access/src/index.ts"
],
"@ng-tests/shared/styles/theme-picker/feature": [
"libs/shared/styles/theme-picker/feature/src/index.ts"
],
"@ng-tests/shared/styles/theme-picker/util": [
"libs/shared/styles/theme-picker/util/src/index.ts"
],
"@ng-tests/shared/test-utils": ["libs/shared/test-utils/src/index.ts"],
"@ng-tests/shared/ui": ["libs/shared/ui/src/index.ts"],
"@ng-tests/shared/util": ["libs/shared/util/src/index.ts"],
"@ng-tests/tailwind/shared/ui": ["libs/tailwind/shared/ui/src/index.ts"],
"@ng-tests/tailwind/shell/feature": [
"libs/tailwind/shell/feature/src/index.ts"
],
"@ng-tests/tailwind/workcation/feature": [
"libs/tailwind/workcation/feature/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}