Evo.Auth/turbo.json
2023-08-01 15:23:30 +03:00

26 lines
463 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"outputs": ["dist/**", ".next/**", "public/dist/**"],
"dependsOn": ["^build"]
},
"lint": {
"dependsOn": ["^build"],
"cache": false,
"outputs": []
},
"lint:fix": {
"dependsOn": ["^build"],
"outputs": []
},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}