-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.test.json
More file actions
47 lines (47 loc) · 1.48 KB
/
Copy pathtsconfig.test.json
File metadata and controls
47 lines (47 loc) · 1.48 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
{
"compilerOptions": {
"module": "node16",
"target": "ES2022",
"lib": ["ES2022"],
"outDir": ".test-out",
"rootDir": ".",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"moduleResolution": "node16",
"types": ["node"],
"skipLibCheck": true
},
"include": [
"src/shared/feedback.ts",
"src/services/SerialTaskQueue.ts",
"src/services/LmStudioClient.ts",
"src/services/OrcaRouterClient.ts",
"src/services/OrcaRouterErrorPolicy.ts",
"src/services/OrcaRouterCredentialStore.ts",
"src/services/LmStudioServerProtocol.ts",
"src/services/RequestPlanner.ts",
"src/services/contextPreset.ts",
"src/services/WorkspacePathPolicy.ts",
"src/application/GuidanceInput.ts",
"src/application/coordinators/NavigationCoordinator.ts",
"src/application/coordinators/FeedbackCoordinator.ts",
"src/shared/messages.ts",
"src/shared/types.ts",
"src/shared/skills.ts",
"test/FeedbackTendencyPolicy.test.ts",
"test/FeedbackCoordinator.test.ts",
"test/SerialTaskQueue.test.ts",
"test/LmStudioClient.test.ts",
"test/OrcaRouterClient.test.ts",
"test/OrcaRouterErrorPolicy.test.ts",
"test/OrcaRouterCredentialStore.test.ts",
"test/LmStudioServerProtocol.test.ts",
"test/WebviewMessages.test.ts",
"test/GuidanceInput.test.ts",
"test/NavigationCoordinator.test.ts",
"test/RequestPlanner.test.ts",
"test/WorkspacePathPolicy.test.ts"
]
}