-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
39 lines (39 loc) · 1.55 KB
/
tsconfig.json
File metadata and controls
39 lines (39 loc) · 1.55 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",
"moduleResolution": "bundler",
"lib": ["ES2022"],
"types": ["node"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": true,
"baseUrl": ".",
"paths": {
"@loomai/types": ["./packages/types/src/index.ts"],
"@loomai/bus": ["./packages/bus/src/index.ts"],
"@loomai/test-harness": ["./packages/test-harness/src/index.ts"],
"@loomai/join-synchronizer": ["./packages/join-synchronizer/src/index.ts"],
"@loomai/deferred-queue": ["./packages/deferred-queue/src/index.ts"],
"@loomai/config": ["./packages/config/src/index.ts"],
"@loomai/store": ["./packages/store/src/index.ts"],
"@loomai/screenpipe": ["./packages/screenpipe/src/index.ts"],
"@loomai/ai-providers": ["./packages/ai-providers/src/index.ts"],
"@loomai/discovery": ["./packages/discovery/src/index.ts"],
"@loomai/credentials": ["./packages/credentials/src/index.ts"],
"@loomai/plugins": ["./packages/plugins/src/index.ts"],
"@loomai/recipe": ["./packages/recipe/src/index.ts"],
"@loomai/fabric": ["./packages/fabric/src/index.ts"],
"@loomai/cron": ["./packages/cron/src/index.ts"],
"@loomai/channel": ["./packages/channel/src/index.ts"],
"@loomai/server": ["./packages/server/src/index.ts"]
}
},
"exclude": ["node_modules", "dist"]
}