-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathtsconfig.prune.json
More file actions
27 lines (27 loc) · 880 Bytes
/
tsconfig.prune.json
File metadata and controls
27 lines (27 loc) · 880 Bytes
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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"paths": {
"@temporalio/*": ["packages/*"]
}
},
"files": [
"./packages/activity/src/index.ts",
"./packages/ai-sdk/src/index.ts",
"./packages/client/src/index.ts",
"./packages/cloud/src/index.ts",
"./packages/common/src/index.ts",
"./packages/common/src/type-helpers.ts",
"./packages/create-project/src/index.ts",
"./packages/envconfig/src/index.ts",
"./packages/interceptors-opentelemetry/src/index.ts",
"./packages/nyc-test-coverage/src/index.ts",
"./packages/meta/src/index.ts",
"./packages/plugin/src/index.ts",
"./packages/testing/src/index.ts",
"./packages/worker/src/index.ts",
"./packages/worker/src/workflow/workflow-worker-thread.ts",
"./packages/workflow/src/index.ts",
"./packages/workflow/src/worker-interface.ts"
]
}