-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
103 lines (103 loc) · 3 KB
/
Copy pathtsconfig.node.json
File metadata and controls
103 lines (103 loc) · 3 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
{
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2022",
"lib": [
"ES2022"
],
"types": [
"node"
],
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"skipLibCheck": true,
"noEmit": true,
"allowImportingTsExtensions": true,
"paths": {
"@executablemd/acp": [
"./packages/acp/mod.ts"
],
"@executablemd/cli": [
"./packages/cli/src/cli.ts"
],
"@executablemd/code-review-agent": [
"./packages/code-review-agent/mod.ts"
],
"@executablemd/core": [
"./packages/core/mod.ts"
],
"@executablemd/durable-streams": [
"./packages/durable-streams/mod.ts"
],
"@executablemd/runtime": [
"./packages/runtime/mod.ts"
],
"@executablemd/runtime/files": [
"./packages/runtime/files.ts"
],
"@executablemd/runtime/test": [
"./packages/runtime/test/mod.ts"
],
"@executablemd/test-agent": [
"./packages/test-agent/mod.ts"
],
"@executablemd/test-support/bdd": [
"./packages/test-support/bdd.ts"
],
"@executablemd/test-support/expect": [
"./packages/test-support/expect.ts"
],
"@executablemd/test-support/launch": [
"./packages/test-support/launch.ts"
],
"@executablemd/testing": [
"./packages/testing/mod.ts"
],
"@executablemd/web": [
"./packages/web/mod.ts"
],
"@executablemd/workflow": [
"./packages/workflow/mod.ts"
]
}
},
"include": [
"packages/acp/**/*.ts",
"packages/cli/**/*.ts",
"packages/code-review-agent/**/*.ts",
"packages/core/**/*.ts",
"packages/durable-streams/**/*.ts",
"packages/runtime/**/*.ts",
"packages/test-agent/**/*.ts",
"packages/test-support/**/*.ts",
"packages/testing/**/*.ts",
"packages/web/**/*.ts",
"packages/workflow/**/*.ts",
"scripts/runtime-tests.ts",
"scripts/runtime-test-exclusions.ts",
"scripts/lib/changed-paths.ts",
"scripts/lib/github.ts",
"scripts/lib/main-health.ts",
"scripts/lib/runtime-tests.ts",
"scripts/lib/test-files.ts",
"scripts/lib/tracked.ts",
"scripts/lib/verify.ts",
"scripts/lib/web-client-module.ts",
"scripts/lib/workspace.ts"
],
// `packages/web/client` runs in a browser, not under Node: these two reach for
// XMLHttpRequest and the DOM, which this project's `lib` deliberately omits.
// The rest of that directory is pure and stays in scope, because the Node
// suite exercises it.
"exclude": [
"packages/durable-streams/demo/**",
// This proof creates and imports a physical package copy through Deno's
// temporary-directory and module-loader APIs; the runtime exclusions keep
// the same file out of the Node and Bun execution suites.
"packages/workflow/tests/workspace-effect-loaded-copy.test.ts",
"packages/web/client/main.tsx",
"packages/web/client/request.ts"
]
}