{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".vinxi/**", ".next/**"],
"inputs": ["internal/*", "packages/*"]
},
"watch": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"inputs": ["internal/*", "packages/*"],
"persistent": true
},
"dev": {
"persistent": true,
"cache": false
},
"lint": {
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"typecheck": {
"outputs": []
},
"cypress:run": {
"dependsOn": ["^build"],
"outputs": []
}
}
}