Files
copilotkit--copilotkit/CopilotKit/turbo.json
T
2023-08-24 22:38:11 -07:00

28 lines
595 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["OPENAI_API_KEY"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**", "!.next/**", "!.next/cache/**"]
},
"lint": {},
"check-types": {
"dependsOn": ["^build"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}