imajin/turbo.json

21 lines
341 B
JSON
Raw Normal View History

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