-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
44 lines (44 loc) · 1.65 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": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@events-logger/environment": [
"apps/events-logger/src/environment/environment"
],
"@hands-on/auth": ["apps/events-logger/src/libs/auth/src/index.ts"],
"@hands-on/carousel": ["libs/ui/carousel/src/index.ts"],
"@hands-on/forms": ["libs/ui/forms/src/index.ts"],
"@hands-on/home-page": [
"apps/events-logger/src/libs/home-page/src/index.ts"
],
"@hands-on/landing-page": [
"apps/events-logger/src/libs/landing-page/src/index.ts"
],
"@hands-on/master-page": ["libs/ui/master-page/src/index.ts"],
"@hands-on/project-page": [
"apps/events-logger/src/libs/project-page/src/index.ts"
],
"@hands-on/service/auth": ["libs/auth/auth.service.ts"],
"@hands-on/service/interceptor": [
"libs/auth/auth-interceptor.interceptor.ts"
],
"@hands-on/table": ["libs/ui/table/src/index.ts"],
"@models": ["libs/http/models/index.ts"],
"@services": ["libs/http/services/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}