-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
tsconfig.base.json
89 lines (89 loc) · 3.29 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
87
88
89
{
"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": {
"@angular-challenges/cli": ["libs/cli/src/index.ts"],
"@angular-challenges/custom-plugin": ["libs/custom-plugin/src/index.ts"],
"@angular-challenges/decoupling/brain": [
"libs/decoupling/brain/src/index.ts"
],
"@angular-challenges/decoupling/core": [
"libs/decoupling/core/src/index.ts"
],
"@angular-challenges/decoupling/helmet": [
"libs/decoupling/helmet/src/index.ts"
],
"@angular-challenges/fake-utils": ["libs/fake-utils/src/index.ts"],
"@angular-challenges/module-to-standalone/admin/feature": [
"libs/module-to-standalone/admin/feature/src/index.ts"
],
"@angular-challenges/module-to-standalone/admin/shared": [
"libs/module-to-standalone/admin/shared/src/index.ts"
],
"@angular-challenges/module-to-standalone/core/providers": [
"libs/module-to-standalone/core/providers/src/index.ts"
],
"@angular-challenges/module-to-standalone/core/service": [
"libs/module-to-standalone/core/service/src/index.ts"
],
"@angular-challenges/module-to-standalone/forbidden": [
"libs/module-to-standalone/forbidden/src/index.ts"
],
"@angular-challenges/module-to-standalone/home": [
"libs/module-to-standalone/home/src/index.ts"
],
"@angular-challenges/module-to-standalone/shell": [
"libs/module-to-standalone/shell/src/index.ts"
],
"@angular-challenges/module-to-standalone/user/contact": [
"libs/module-to-standalone/user/contact/src/index.ts"
],
"@angular-challenges/module-to-standalone/user/home": [
"libs/module-to-standalone/user/home/src/index.ts"
],
"@angular-challenges/module-to-standalone/user/shell": [
"libs/module-to-standalone/user/shell/src/index.ts"
],
"@angular-challenges/power-of-effect/backend": [
"libs/power-of-effect/backend/src/index.ts"
],
"@angular-challenges/power-of-effect/model": [
"libs/power-of-effect/model/src/index.ts"
],
"@angular-challenges/shared/directives": [
"libs/shared/directives/src/index.ts"
],
"@angular-challenges/shared/ui": ["libs/shared/ui/src/index.ts"],
"@angular-challenges/shared/utils": ["libs/shared/utils/src/index.ts"],
"@angular-challenges/static-dynamic-import/users": [
"libs/static-dynamic-import/users/src/index.ts"
],
"@angular-challenges/testing-table/backend": [
"libs/testing-table/backend/src/index.ts"
],
"@angular-challenges/testing-table/model": [
"libs/testing-table/model/src/index.ts"
],
"@tomalaforge/ngrx-callstate-store": [
"libs/shared/ngrx-callstate-store/src/index.ts"
],
"angular-master-dependency-injection": [
"apps/angular/16-master-dependency-injection/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}