mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 21:03:26 +00:00
21 lines
481 B
JSON
21 lines
481 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalPassThroughEnv": ["SANDBOX_AGENT_SKIP_INSPECTOR"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", "build/**", "lib/**", "src/generated/**"]
|
|
},
|
|
"generate": {
|
|
"dependsOn": ["^generate"],
|
|
"outputs": ["src/generated/**"]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build", "build"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|