Files
workflows-ts/turbo.json
T
2025-04-20 17:03:55 -07:00

17 lines
268 B
JSON

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