-
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) · 1 KB
/
Copy pathtsconfig.examples.json
File metadata and controls
24 lines (24 loc) · 1 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"paths": {
"@loop-engine/sdk": ["./packages/sdk/src/index.ts"],
"@loop-engine/core": ["./packages/core/src/index.ts"],
"@loop-engine/loop-definition": ["./packages/loop-definition/src/index.ts"],
"@loop-engine/runtime": ["./packages/runtime/src/index.ts"],
"@loop-engine/events": ["./packages/events/src/index.ts"],
"@loop-engine/guards": ["./packages/guards/src/index.ts"],
"@loop-engine/actors": ["./packages/actors/src/index.ts"],
"@loop-engine/signals": ["./packages/signals/src/index.ts"],
"@loop-engine/observability": ["./packages/observability/src/index.ts"],
"@loop-engine/adapter-memory": ["./packages/adapter-memory/src/index.ts"],
"@loop-engine/registry-client": ["./packages/registry-client/src/index.ts"]
}
},
"include": ["examples/ai-actors/shared/**/*.ts"]
}