File: //opt/chatbot-sdk/turbo.json
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"CI",
"PORT",
"OPENAI_ASSISTANT_ID",
"OPENAI_API_KEY"
],
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"env": [],
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**"
]
},
"lint": {
"dependsOn": [
"^lint"
]
},
"type-check": {
"dependsOn": [
"^build",
"build"
]
},
"test": {
"dependsOn": [
"^build",
"build"
]
},
"publint": {
"dependsOn": [
"^build",
"build"
]
},
"clean": {
"dependsOn": [
"^clean"
]
},
"dev": {
"cache": false,
"persistent": true
},
"prettier-check": {},
"integration-test": {
"dependsOn": [
"^build",
"build"
]
}
}
}