27 lines
517 B
JSON
27 lines
517 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"build": {
|
|
"cache": false,
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"serve": {
|
|
"cache": false
|
|
},
|
|
"test:unit": {
|
|
"cache": false
|
|
},
|
|
"test:e2e": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"cache": false
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|