forked from cyrusagents/cyrus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
39 lines (39 loc) · 1.29 KB
/
tsconfig.base.json
File metadata and controls
39 lines (39 loc) · 1.29 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022"],
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
"paths": {
"cyrus-core": ["packages/core"],
"cyrus-claude-parser": ["packages/claude-parser"],
"cyrus-linear-client": ["packages/linear-client"],
"cyrus-history-stream": ["packages/history-stream"],
"cyrus-edge-worker": ["packages/edge-worker"],
"cyrus-claude-runner": ["packages/claude-runner"],
"cyrus-codex-runner": ["packages/codex-runner"],
"cyrus-cursor-runner": ["packages/cursor-runner"],
"cyrus-gemini-runner": ["packages/gemini-runner"],
"cyrus-mcp-tools": ["packages/mcp-tools"],
"cyrus-simple-agent-runner": ["packages/simple-agent-runner"],
"cyrus-config-updater": ["packages/config-updater"],
"cyrus-linear-event-transport": ["packages/linear-event-transport"]
}
},
"exclude": ["node_modules", "dist", "build"]
}