30 lines
521 B
JSON
30 lines
521 B
JSON
|
|
{
|
||
|
|
"$schema": "https://turbo.build/schema.json",
|
||
|
|
"tasks": {
|
||
|
|
"build": {
|
||
|
|
"dependsOn": ["^build"],
|
||
|
|
"outputs": ["dist/**", ".next/**"]
|
||
|
|
},
|
||
|
|
"dev": {
|
||
|
|
"persistent": true,
|
||
|
|
"cache": false
|
||
|
|
},
|
||
|
|
"lint": {
|
||
|
|
"dependsOn": ["^build"]
|
||
|
|
},
|
||
|
|
"test": {
|
||
|
|
"dependsOn": ["^build"]
|
||
|
|
},
|
||
|
|
"test:unit": {
|
||
|
|
"dependsOn": ["^build"]
|
||
|
|
},
|
||
|
|
"test:e2e": {
|
||
|
|
"dependsOn": ["^build"]
|
||
|
|
},
|
||
|
|
"test:cov": {
|
||
|
|
"dependsOn": ["^build"]
|
||
|
|
},
|
||
|
|
"format:check": {}
|
||
|
|
}
|
||
|
|
}
|