forked from dabit3/ai-agent-cognitivedriftt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
26 lines (26 loc) · 673 Bytes
/
turbo.json
File metadata and controls
26 lines (26 loc) · 673 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
25
26
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"check-types": {
"dependsOn": ["build"]
},
"@ai16z/agent#check-types": {
"dependsOn": ["@ai16z/plugin-solana#build"]
},
"build": {
"outputs": ["dist/**"],
"dependsOn": ["^@ai16z/eliza#build"]
},
"@ai16z/plugin-solana#build": {
"outputs": ["dist/**"],
"dependsOn": ["@ai16z/plugin-trustdb#build"]
},
"eliza-docs#build": {
"outputs": ["build/**"]
},
"dev": {
"persistent": true,
"cache": false
}
}
}