-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
98 lines (98 loc) · 3.01 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
90
91
92
93
94
95
96
97
98
{
"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": {
"@bn/shared/environments": [
"libs/shared/environments/src/index.ts"
],
"@bn/web/auth/data-access": [
"libs/web/auth/data-access/src/index.ts"
],
"@bn/web/auth/feature/container": [
"libs/web/auth/feature/container/src/index.ts"
],
"@bn/web/auth/feature/login": [
"libs/web/auth/feature/login/src/index.ts"
],
"@bn/web/auth/feature/shell": [
"libs/web/auth/feature/shell/src/index.ts"
],
"@bn/web/auth/feature/sign-up": [
"libs/web/auth/feature/sign-up/src/index.ts"
],
"@bn/web/dayjs-adapter": ["libs/web/dayjs-adapter/src/index.ts"],
"@bn/web/home/feature": ["libs/web/home/feature/src/index.ts"],
"@bn/web/note/data-access": [
"libs/web/note/data-access/src/index.ts"
],
"@bn/web/note/feature/detail": [
"libs/web/note/feature/detail/src/index.ts"
],
"@bn/web/note/feature/shell": [
"libs/web/note/feature/shell/src/index.ts"
],
"@bn/web/note/ui/bean-detail-form": [
"libs/web/note/ui/bean-detail-form/src/index.ts"
],
"@bn/web/note/ui/brew-note-form": [
"libs/web/note/ui/brew-note-form/src/index.ts"
],
"@bn/web/note/ui/tasting-note-form": [
"libs/web/note/ui/tasting-note-form/src/index.ts"
],
"@bn/web/note/utils": ["libs/web/note/utils/src/index.ts"],
"@bn/web/shared/data-access/translations": [
"libs/web/shared/data-access/translations/src/index.ts"
],
"@bn/web/shared/directives/click-stop-propagation": [
"libs/web/shared/directives/click-stop-propagation/src/index.ts"
],
"@bn/web/shared/directives/gradient": [
"libs/web/shared/directives/gradient/src/index.ts"
],
"@bn/web/shared/pipes/translate": [
"libs/web/shared/pipes/translate/src/index.ts"
],
"@bn/web/shared/pipes/trim-filename": [
"libs/web/shared/pipes/trim-filename/src/index.ts"
],
"@bn/web/shared/ui/animation": [
"libs/web/shared/ui/animation/src/index.ts"
],
"@bn/web/shared/ui/chips-autocomplete": [
"libs/web/shared/ui/chips-autocomplete/src/index.ts"
],
"@bn/web/shared/ui/country-autocomplete": [
"libs/web/shared/ui/country-autocomplete/src/index.ts"
],
"@bn/web/shared/ui/duration-slider": [
"libs/web/shared/ui/duration-slider/src/index.ts"
],
"@bn/web/shared/ui/uploader": [
"libs/web/shared/ui/uploader/src/index.ts"
],
"@bn/web/shared/utils": ["libs/web/shared/utils/src/index.ts"],
"@bn/web/shell/feature": ["libs/web/shell/feature/src/index.ts"],
"@bn/web/shell/ui/layout": [
"libs/web/shell/ui/layout/src/index.ts"
],
"@bn/web/shell/ui/top-bar": [
"libs/web/shell/ui/top-bar/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}