viossa.net/turbo.json

25 lines
407 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"watch": {
"dependsOn": ["^watch"]
},
"dev": {
"with": ["watch"],
"persistent": true,
"cache": false
},
"start": {
"dependsOn": ["^build"],
"persistent": true,
"cache": false
}
}
}