-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
44 lines (44 loc) · 1.67 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
{
"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": {
"@speak-out/app-data-access": ["libs/app/data-access/src/index.ts"],
"@speak-out/app-feature-auth": ["libs/app/feature-auth/src/index.ts"],
"@speak-out/app-feature-calendar": [
"libs/app/feature-calendar/src/index.ts"
],
"@speak-out/app-feature-home": ["libs/app/feature-home/src/index.ts"],
"@speak-out/app-feature-notification": [
"libs/app/feature-notification/src/index.ts"
],
"@speak-out/app-feature-shell": ["libs/app/feature-shell/src/index.ts"],
"@speak-out/app-feature-sponsors": [
"libs/app/feature-sponsors/src/index.ts"
],
"@speak-out/app-feature-talks": ["libs/app/feature-talks/src/index.ts"],
"@speak-out/app-feature-user": ["libs/app/feature-user/src/index.ts"],
"@speak-out/app-ui-dialogs": ["libs/app/ui-dialogs/src/index.ts"],
"@speak-out/app-ui-layout": ["libs/app/ui-layout/src/index.ts"],
"@speak-out/app-ui-talks": ["libs/app/ui-talks/src/index.ts"],
"@speak-out/shared-ui-common": ["libs/shared/ui-common/src/index.ts"],
"@speak-out/shared-ui-dialogs": ["libs/shared/ui-dialogs/src/index.ts"],
"@speak-out/shared-util-storage": [
"libs/shared/util-storage/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}