-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.examples.json
More file actions
24 lines (24 loc) · 1011 Bytes
/
Copy pathtsconfig.examples.json
File metadata and controls
24 lines (24 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": true,
"rootDir": ".",
"paths": {
"@tangle-network/agent-runtime": ["./src/index.ts"],
"@tangle-network/agent-runtime/agent": ["./src/agent/index.ts"],
"@tangle-network/agent-runtime/durable": ["./src/durable/index.ts"],
"@tangle-network/agent-runtime/intelligence": ["./src/intelligence/index.ts"],
"@tangle-network/agent-runtime/kernel": ["./src/runtime/index.ts"],
"@tangle-network/agent-runtime/tool-loop": ["./src/tool-loop.ts"],
"@tangle-network/agent-runtime/analyst-loop": ["./src/analyst-loop/index.ts"],
"@tangle-network/agent-runtime/profiles": ["./src/profiles/index.ts"],
"@tangle-network/agent-runtime/platform": ["./src/platform/index.ts"],
"@tangle-network/agent-runtime/mcp": ["./src/mcp/index.ts"]
},
"declaration": false,
"declarationMap": false,
"sourceMap": false
},
"include": ["examples"],
"exclude": ["node_modules", "dist"]
}