-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
62 lines (62 loc) · 2.09 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
{
"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": {
"@artur-ba/shared/interceptors": [
"libs/shared/interceptors/src/index.ts"
],
"@artur-ba/shared/pipes": ["libs/shared/pipes/src/index.ts"],
"@artur-ba/shared/service": ["libs/shared/service/src/index.ts"],
"@artur-ba/shared/test-helpers": [
"libs/shared/test-helpers/src/index.ts"
],
"@artur-ba/shared/view": ["libs/shared/view/src/index.ts"],
"@artur-ba/web/lyrics/mini-lyrics/interface": [
"libs/web/lyrics/mini-lyrics/interface/src/index.ts"
],
"@artur-ba/web/lyrics/mini-lyrics/service": [
"libs/web/lyrics/mini-lyrics/service/src/index.ts"
],
"@artur-ba/web/lyrics/model": ["libs/web/lyrics/model/src/index.ts"],
"@artur-ba/web/lyrics/view": ["libs/web/lyrics/view/src/index.ts"],
"@artur-ba/web/spotify/homepage/view": [
"libs/web/spotify/homepage/view/src/index.ts"
],
"@artur-ba/web/spotify/player/view": [
"libs/web/spotify/player/view/src/index.ts"
],
"@artur-ba/web/spotify/shared/directives": [
"libs/web/spotify/shared/directives/src/index.ts"
],
"@artur-ba/web/spotify/shared/helper": [
"libs/web/spotify/shared/helper/src/index.ts"
],
"@artur-ba/web/spotify/shared/pipe": [
"libs/web/spotify/shared/pipe/src/index.ts"
],
"@artur-ba/web/spotify/shared/service": [
"libs/web/spotify/shared/service/src/index.ts"
],
"@artur-ba/web/spotify/shared/view": [
"libs/web/spotify/shared/view/src/index.ts"
],
"@artur-ba/web/spotify/sidebar/view": [
"libs/web/spotify/sidebar/view/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}