Files
tuono/turbo.json
T
2024-11-17 17:51:20 +01:00

23 lines
383 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint": {
"dependsOn": ["^build"]
},
"format": {},
"format:check": {},
"types": {
"dependsOn": ["^build"]
},
"test": {},
"test:watch": {},
"build": {
"outputs": ["dist/**"],
"dependsOn": ["^build"]
},
"dev": {
"dependsOn": ["^build"]
}
}
}