-
Notifications
You must be signed in to change notification settings - Fork 657
Expand file tree
/
Copy pathtsconfig.json
More file actions
148 lines (148 loc) · 6.24 KB
/
tsconfig.json
File metadata and controls
148 lines (148 loc) · 6.24 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"extends": "../../tsconfig.json",
"include": ["src", "__tests__"],
"references": [
{ "path": "../api" },
{ "path": "../api-core" },
{ "path": "../aws-sdk" },
{ "path": "../db-dynamodb" },
{ "path": "../error" }
],
"compilerOptions": {
"rootDirs": ["./src", "./__tests__"],
"outDir": "./dist",
"declarationDir": "./dist",
"paths": {
"~/*": ["./src/*"],
"~tests/*": ["./__tests__/*"],
"@webiny/api/*": ["../api/src/*"],
"@webiny/api": ["../api/src"],
"@webiny/api-core/features/EventPublisher": [
"../api-core/src/features/eventPublisher/index.js"
],
"@webiny/api-core/features/LoggerService": ["../api-core/src/features/logger/index.js"],
"@webiny/api-core/features/IdentityContext": [
"../api-core/src/features/security/IdentityContext/index.js"
],
"@webiny/api-core/features/WcpContext": ["../api-core/src/features/wcp/WcpContext/index.js"],
"@webiny/api-core/features/TaskService": [
"../api-core/src/features/task/TaskService/index.js"
],
"@webiny/api-core/features/CreateApiKey": [
"../api-core/src/features/security/apiKeys/CreateApiKey/index.js"
],
"@webiny/api-core/features/DeleteApiKey": [
"../api-core/src/features/security/apiKeys/DeleteApiKey/index.js"
],
"@webiny/api-core/features/GetApiKey": [
"../api-core/src/features/security/apiKeys/GetApiKey/index.js"
],
"@webiny/api-core/features/GetApiKeyByToken": [
"../api-core/src/features/security/apiKeys/GetApiKeyByToken/index.js"
],
"@webiny/api-core/features/ListApiKeys": [
"../api-core/src/features/security/apiKeys/ListApiKeys/index.js"
],
"@webiny/api-core/features/UpdateApiKey": [
"../api-core/src/features/security/apiKeys/UpdateApiKey/index.js"
],
"@webiny/api-core/features/AuthenticationContext": [
"../api-core/src/features/security/authentication/AuthenticationContext/index.js"
],
"@webiny/api-core/features/Authenticator": [
"../api-core/src/features/security/authentication/Authenticator/index.js"
],
"@webiny/api-core/features/AuthorizationContext": [
"../api-core/src/features/security/authorization/AuthorizationContext/index.js"
],
"@webiny/api-core/features/Authorizer": [
"../api-core/src/features/security/authorization/Authorizer/index.js"
],
"@webiny/api-core/features/CreateRole": [
"../api-core/src/features/security/roles/CreateRole/index.js"
],
"@webiny/api-core/features/DeleteRole": [
"../api-core/src/features/security/roles/DeleteRole/index.js"
],
"@webiny/api-core/features/GetRole": [
"../api-core/src/features/security/roles/GetRole/index.js"
],
"@webiny/api-core/features/ListRoles": [
"../api-core/src/features/security/roles/ListRoles/index.js"
],
"@webiny/api-core/features/UpdateRole": [
"../api-core/src/features/security/roles/UpdateRole/index.js"
],
"@webiny/api-core/features/CreateTeam": [
"../api-core/src/features/security/teams/CreateTeam/index.js"
],
"@webiny/api-core/features/DeleteTeam": [
"../api-core/src/features/security/teams/DeleteTeam/index.js"
],
"@webiny/api-core/features/GetTeam": [
"../api-core/src/features/security/teams/GetTeam/index.js"
],
"@webiny/api-core/features/ListTeams": [
"../api-core/src/features/security/teams/ListTeams/index.js"
],
"@webiny/api-core/features/UpdateTeam": [
"../api-core/src/features/security/teams/UpdateTeam/index.js"
],
"@webiny/api-core/features/CreateTenantLinks": [
"../api-core/src/features/security/tenantLinks/CreateTenantLinks/index.js"
],
"@webiny/api-core/features/DeleteTenantLinks": [
"../api-core/src/features/security/tenantLinks/DeleteTenantLinks/index.js"
],
"@webiny/api-core/features/GetTenantLinkByIdentity": [
"../api-core/src/features/security/tenantLinks/GetTenantLinkByIdentity/index.js"
],
"@webiny/api-core/features/ListTenantLinksByIdentity": [
"../api-core/src/features/security/tenantLinks/ListTenantLinksByIdentity/index.js"
],
"@webiny/api-core/features/ListTenantLinksByTenant": [
"../api-core/src/features/security/tenantLinks/ListTenantLinksByTenant/index.js"
],
"@webiny/api-core/features/ListTenantLinksByType": [
"../api-core/src/features/security/tenantLinks/ListTenantLinksByType/index.js"
],
"@webiny/api-core/features/UpdateTenantLinks": [
"../api-core/src/features/security/tenantLinks/UpdateTenantLinks/index.js"
],
"@webiny/api-core/features/InstallSystem": [
"../api-core/src/features/system/InstallSystem/index.js"
],
"@webiny/api-core/features/InstallTenant": [
"../api-core/src/features/tenancy/InstallTenant/index.js"
],
"@webiny/api-core/features/TenantContext": [
"../api-core/src/features/tenancy/TenantContext/index.js"
],
"@webiny/api-core/features/CreateUser": [
"../api-core/src/features/users/CreateUser/index.js"
],
"@webiny/api-core/features/DeleteUser": [
"../api-core/src/features/users/DeleteUser/index.js"
],
"@webiny/api-core/features/UpdateUser": [
"../api-core/src/features/users/UpdateUser/index.js"
],
"@webiny/api-core/features/GetUser": ["../api-core/src/features/users/GetUser/index.js"],
"@webiny/api-core/features/ListUsers": ["../api-core/src/features/users/ListUsers/index.js"],
"@webiny/api-core/features/ListUserTeams": [
"../api-core/src/features/users/ListUserTeams/index.js"
],
"@webiny/api-core/features/ExternalIdpUserSync": [
"../api-core/src/features/users/ExternalIdpUserSync/index.js"
],
"@webiny/api-core/*": ["../api-core/src/*"],
"@webiny/api-core": ["../api-core/src"],
"@webiny/aws-sdk/*": ["../aws-sdk/src/*"],
"@webiny/aws-sdk": ["../aws-sdk/src"],
"@webiny/db-dynamodb/*": ["../db-dynamodb/src/*"],
"@webiny/db-dynamodb": ["../db-dynamodb/src"],
"@webiny/error/*": ["../error/src/*"],
"@webiny/error": ["../error/src"]
}
}
}