Files
home-service/turbo.json

47 lines
941 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next/**",
"!.next/cache/**",
"dist/**"
]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": [
"^lint"
]
},
"format": {
"cache": false
},
"check": {
"dependsOn": [
"^check"
]
},
"test": {
"dependsOn": [
"^build"
]
},
"test:watch": {
"cache": false,
"persistent": true
},
"test:e2e": {
"dependsOn": [
"^build"
]
}
}
}