-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
41 lines (41 loc) · 1.61 KB
/
tsconfig.base.json
File metadata and controls
41 lines (41 loc) · 1.61 KB
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
{
"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": {
"@glom/casl": ["libs/nest/casl/src/index.ts"],
"@glom/data-types": ["libs/data-types/src/index.ts"],
"@glom/execeptions": ["libs/nest/exceptions/src/index.ts"],
"@glom/nest-auth": ["libs/nest/auth/src/index.ts"],
"@glom/nest-mailer": ["libs/nest/mailer/src/index.ts"],
"@glom/nest-tasks": ["libs/nest/tasks/src/index.ts"],
"@glom/prisma": ["libs/nest/prisma/src/index.ts"],
"@glom/redis": ["libs/nest/redis/src/index.ts"],
"@glom/request": ["libs/request/src/index.ts"],
"@glom/theme": ["libs/theme/src/index.ts"],
"@squoolr/api-services": ["libs/api-services/src/index.ts"],
"@squoolr/auth": ["libs/squoolr-auth/src/index.ts"],
"@squoolr/axios": ["libs/axios/src/index.ts"],
"@squoolr/confirm-dialogs": ["libs/confirm-dialogs/src/index.ts"],
"@squoolr/constants": ["libs/constants/src/index.ts"],
"@glom/encrypter": ["libs/encrypter/src/index.ts"],
"@squoolr/interfaces": ["libs/interfaces/src/index.ts"],
"@squoolr/layout": ["libs/squoolr-layout/src/index.ts"],
"@squoolr/toast": ["libs/toast/src/index.ts"],
"@squoolr/utils": ["libs/utils/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}