Files
tuono/turbo.json
T
2024-06-04 20:57:53 +02:00

22 lines
298 B
JSON

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