-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.core.json
More file actions
37 lines (37 loc) · 1.16 KB
/
Copy pathtsconfig.core.json
File metadata and controls
37 lines (37 loc) · 1.16 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
{
"//": "Fast, strict type-check for new pure-TypeScript modules (src/core and future engines that avoid heavy node_modules types). Kept separate from the main build because full tsc over the LangChain type graph is prohibitively slow here.",
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"lib": ["ES2020"],
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"skipLibCheck": true,
"types": [],
"forceConsistentCasingInFileNames": true
},
"include": [
"src/core/**/*.ts",
"src/state/projectStore.ts",
"src/tasks/**/*.ts",
"src/tools/filesystemTools.ts",
"src/tools/terminalTools.ts",
"src/tools/toolRegistry.ts",
"src/runtime/agentRuntime.ts",
"src/runtime/toolLoopEngine.ts",
"src/runtime/gitCheckpoint.ts",
"src/verify/**/*.ts",
"src/repair/**/*.ts",
"src/context/**/*.ts",
"src/model/**/*.ts",
"src/planning/**/*.ts",
"src/agentSanitize.ts",
"src/safeCommands.ts",
"src/chatAgentActivity.ts",
"src/chatToolRunner.ts",
"src/policy/**/*.ts",
"src/architecture/**/*.ts"
],
"exclude": ["**/*.test.ts", "src/architecture/projectScanner.ts"]
}