-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.base.json
68 lines (68 loc) · 2.93 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
63
64
65
66
67
68
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"strictPropertyInitialization": false,
"strictNullChecks": false,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@client/core-state": ["libs/client/core-state/src/index.ts"],
"@client/core-ui": ["libs/client/core-ui/src/index.ts"],
"@client/core/auth": ["libs/client/core/auth/src/index.ts"],
"@client/core/icons": ["libs/client/core/icons/src/index.ts"],
"@client/core/navigation": ["libs/client/core/navigation/src/index.ts"],
"@client/shared/interfaces": [
"libs/client/shared/interfaces/src/index.ts"
],
"@client/shared/services": ["libs/client/shared/services/src/index.ts"],
"@fuse": ["libs/client/fuse/src/index.ts"],
"@fuse/*": ["libs/client/fuse/src/lib/*"],
"@server/cloud/data-access": [
"libs/server/cloud/data-access/src/index.ts"
],
"@server/cloud/feature": ["libs/server/cloud/feature/src/index.ts"],
"@server/cloud/utils": ["libs/server/cloud/utils/src/index.ts"],
"@server/comments": ["libs/server/comments/src/index.ts"],
"@server/iam/feature/authentication/data-access": [
"libs/server/iam/feature/authentication/data-access/src/index.ts"
],
"@server/iam/feature/authentication/feature": [
"libs/server/iam/feature/authentication/feature/src/index.ts"
],
"@server/iam/feature/authentication/utils": [
"libs/server/iam/feature/authentication/utils/src/index.ts"
],
"@server/iam/feature/authorization/feature": [
"libs/server/iam/feature/authorization/feature/src/index.ts"
],
"@server/iam/feature/authorization/utils": [
"libs/server/iam/feature/authorization/utils/src/index.ts"
],
"@server/iam/utils": ["libs/server/iam/utils/src/index.ts"],
"@server/labels": ["libs/server/labels/src/index.ts"],
"@server/plans": ["libs/server/plans/src/index.ts"],
"@server/shared/config": ["libs/server/shared/config/src/index.ts"],
"@server/shared/dto": ["libs/server/shared/dto/src/index.ts"],
"@server/shared/entities": ["libs/server/shared/entities/src/index.ts"],
"@server/shared/services": ["libs/server/shared/services/src/index.ts"],
"@server/tasks": ["libs/server/tasks/src/index.ts"],
"@server/todos": ["libs/server/todos/src/index.ts"],
"@server/tools": ["libs/server/tools/src/index.ts"],
"@server/users": ["libs/server/users/src/index.ts"],
"@tools": ["tools/src/index.ts"],
"libs/server/chats": ["libs/server/chats/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp", "libs/client/fuse/src/lib"]
}