Files
pos-system/turbo.json

37 lines
552 B
JSON

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