-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
53 lines (53 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
{
"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": {
"@spotify/web/layout": ["libs/web/layout/src/index.ts"],
"@spotify/web/nav-bar": ["libs/web/nav-bar/src/index.ts"],
"@spotify/web/browse/features/categories": [
"libs/web/browse/features/categories/src/index.ts"
],
"@spotify/web/main-view": ["libs/web/main-view/src/index.ts"],
"@spotify/web/now-playing-bar": ["libs/web/now-playing-bar/src/index.ts"],
"@spotify/web/shared/ui/play-button": [
"libs/web/shared/ui/play-button/src/index.ts"
],
"@spotify/web/auth": ["libs/web/auth/src/index.ts"],
"@spotify/web/store": ["libs/web/store/src/index.ts"],
"@spotify/apis": ["libs/apis/src/index.ts"],
"@spotify/spotify-route": ["libs/spotify-route/src/index.ts"],
"@spotify/web/top-bar": ["libs/web/top-bar/src/index.ts"],
"@spotify/web/shared/app-config": [
"libs/web/shared/app-config/src/index.ts"
],
"@spotify/web/home": ["libs/web/home/src/index.ts"],
"@spotify/web/recent-played": ["libs/web/recent-played/src/index.ts"],
"@spotify/web/shared/ui/song": ["libs/web/shared/ui/song/src/index.ts"],
"@spotify/callback": ["libs/callback/src/index.ts"],
"@spotify/web/shared/models": ["libs/web/shared/models/src/index.ts"],
"@spotify/web/shared/utils": ["libs/web/shared/utils/src/index.ts"],
"@spotify/web/browse/features/search": [
"libs/web/browse/features/search/src/index.ts"
],
"@spotify/web/shared/ui/play-list": [
"libs/web/shared/ui/play-list/src/index.ts"
],
"@spotify/web/shared/http": ["libs/web/shared/http/src/index.ts"]
},
"types": ["node", "spotify-api"]
},
"exclude": ["node_modules", "tmp"]
}