-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.base.json
84 lines (84 loc) · 4.43 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
{
"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": {
"@component-store-playground/playground/auth/feature": ["libs/playground/auth/feature/src/index.ts"],
"@component-store-playground/playground/fetch-demo/data-access": [
"libs/playground/fetch-demo/data-access/src/index.ts"
],
"@component-store-playground/playground/fetch-demo/feature/client-side-filter": [
"libs/playground/fetch-demo/feature/client-side-filter/src/index.ts"
],
"@component-store-playground/playground/fetch-demo/feature/detail": [
"libs/playground/fetch-demo/feature/detail/src/index.ts"
],
"@component-store-playground/playground/fetch-demo/feature/list": [
"libs/playground/fetch-demo/feature/list/src/index.ts"
],
"@component-store-playground/playground/fetch-demo/feature/shell": [
"libs/playground/fetch-demo/feature/shell/src/index.ts"
],
"@component-store-playground/playground/fetch-demo/ui/paginator": [
"libs/playground/fetch-demo/ui/paginator/src/index.ts"
],
"@component-store-playground/playground/fetch-demo/ui/pokemon-card": [
"libs/playground/fetch-demo/ui/pokemon-card/src/index.ts"
],
"@component-store-playground/playground/forms-demo/data-access": [
"libs/playground/forms-demo/data-access/src/index.ts"
],
"@component-store-playground/playground/forms-demo/feature/details": [
"libs/playground/forms-demo/feature/details/src/index.ts"
],
"@component-store-playground/playground/forms-demo/feature/list": [
"libs/playground/forms-demo/feature/list/src/index.ts"
],
"@component-store-playground/playground/forms-demo/feature/shell": [
"libs/playground/forms-demo/feature/shell/src/index.ts"
],
"@component-store-playground/playground/home/feature": ["libs/playground/home/feature/src/index.ts"],
"@component-store-playground/playground/shell": ["libs/playground/shell/src/index.ts"],
"@component-store-playground/playground/todos/data-access": ["libs/playground/todos/data-access/src/index.ts"],
"@component-store-playground/playground/todos/feature": ["libs/playground/todos/feature/src/index.ts"],
"@component-store-playground/playground/workflows/data-access": [
"libs/playground/workflows/data-access/src/index.ts"
],
"@component-store-playground/playground/workflows/feature/details": [
"libs/playground/workflows/feature/details/src/index.ts"
],
"@component-store-playground/playground/workflows/feature/list": [
"libs/playground/workflows/feature/list/src/index.ts"
],
"@component-store-playground/playground/workflows/feature/shell": [
"libs/playground/workflows/feature/shell/src/index.ts"
],
"@component-store-playground/playground/workflows/util": ["libs/playground/workflows/util/src/index.ts"],
"@component-store-playground/shared/data-access/idb": ["libs/shared/data-access/idb/src/index.ts"],
"@component-store-playground/shared/data-access/models": ["libs/shared/data-access/models/src/index.ts"],
"@component-store-playground/shared/data-access/ui-store": ["libs/shared/data-access/ui-store/src/index.ts"],
"@component-store-playground/shared/ui/footer": ["libs/shared/ui/footer/src/index.ts"],
"@component-store-playground/shared/ui/forms": ["libs/shared/ui/forms/src/index.ts"],
"@component-store-playground/shared/ui/header": ["libs/shared/ui/header/src/index.ts"],
"@component-store-playground/shared/ui/icon": ["libs/shared/ui/icon/src/index.ts"],
"@component-store-playground/shared/ui/loading": ["libs/shared/ui/loading/src/index.ts"],
"@component-store-playground/shared/ui/page": ["libs/shared/ui/page/src/index.ts"],
"@component-store-playground/shared/ui/sidenav": ["libs/shared/ui/sidenav/src/index.ts"],
"@component-store-playground/shared/util/rx": ["libs/shared/util/rx/src/index.ts"],
"@csp-playground/shared/data-access/idb": ["libs/playground/shared/data-access/idb/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}