-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
43 lines (43 loc) · 2.1 KB
/
tsconfig.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
{
"extends": "./tsconfig.base.json",
"files": [],
// The references must be in order. If package A is a dependency for package B, then A must be referenced before B. For more details see https://www.typescriptlang.org/docs/handbook/project-references.html
"references": [
{ "path": "packages/types" },
{ "path": "packages/testing" },
{ "path": "packages/http" },
{ "path": "packages/job-errors" },
{ "path": "packages/ssm-cache" },
{ "path": "packages/elasticsearch-client" },
{ "path": "packages/s3-client" },
{ "path": "packages/sns-client" },
{ "path": "packages/sqs-client" },
{ "path": "packages/twilio-client" },
{ "path": "packages/twilio-worker-auth" },
{ "path": "packages/service-discovery" },
{ "path": "packages/process" },
{ "path": "lambdas/packages/hrm-authentication" },
{ "path": "lambdas/job-complete" },
{ "path": "hrm-domain/packages/hrm-types" },
{ "path": "hrm-domain/packages/hrm-search-config" },
{ "path": "hrm-domain/lambdas/contact-complete" },
{ "path": "hrm-domain/lambdas/contact-retrieve-transcript" },
{ "path": "hrm-domain/lambdas/files-urls" },
{ "path": "hrm-domain/lambdas/search-index-consumer" },
{ "path": "hrm-domain/hrm-core" },
{ "path": "hrm-domain/scheduled-tasks/hrm-data-pull" },
{ "path": "hrm-domain/scheduled-tasks/contact-job-cleanup" },
{ "path": "hrm-domain/scheduled-tasks/case-status-transition" },
{ "path": "hrm-domain/scheduled-tasks/profile-flags-cleanup" },
{ "path": "hrm-domain/scheduled-tasks/transcript-scrubber" },
{ "path": "hrm-domain/scheduled-tasks/generate-ai-training-set" },
{ "path": "resources-domain/packages/resources-search-config" },
{ "path": "resources-domain/resources-service/tsconfig.scripts.json" },
{ "path": "resources-domain/lambdas/import-consumer" },
{ "path": "resources-domain/lambdas/import-producer" },
{ "path": "resources-domain/lambdas/search-index" },
{ "path": "resources-domain/resources-service" },
{ "path": "hrm-domain/hrm-service" },
{ "path": "hrm-domain/integration-tests/transcripts" }
]
}