24 lines
410 B
JSON
24 lines
410 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", "frontend/dist/**", "backend/dist/**"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^test"],
|
|
"outputs": []
|
|
},
|
|
"check": {
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|