-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 1.03 KB
/
Copy pathtsconfig.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"compilerOptions": {
"strict": true,
"target": "ES2022",
"module": "Node16",
"moduleResolution": "Node16",
"rootDir": ".",
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"],
"jsx": "react-jsx",
"paths": {
"@axiom-labs/arc-core": ["./packages/core/src/index.ts"],
"@axiom-labs/arc-adapter-claude": ["./packages/adapter-claude/src/index.ts"],
"@axiom-labs/arc-adapter-openclaw": ["./packages/adapter-openclaw/src/index.ts"],
"@axiom-labs/arc-mcp": ["./packages/mcp/src/index.ts"],
"@axiom-labs/arc-dashboard": ["./packages/dashboard/src/index.ts"]
}
},
"include": [
"src/index.ts",
"packages/core/src/**/*.ts",
"packages/adapter-claude/src/**/*.ts",
"packages/adapter-openclaw/src/**/*.ts",
"packages/mcp/src/**/*.ts",
"packages/dashboard/src/**/*.ts",
"packages/cli/src/**/*.ts",
"packages/cli/src/**/*.tsx",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules",
"dist",
"packages/*/dist"
]
}