plane/turbo.json

26 lines
405 B
JSON
Raw Normal View History

2022-11-29 20:51:17 +00:00
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "dist/**"]
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
},
"start": {
"cache": false
},
"clean": {
"cache": false
2022-11-29 20:51:17 +00:00
}
}
}