Files
tuono/turbo.json
T

22 lines
298 B
JSON
Raw Normal View History

2024-04-27 10:10:50 +02:00
{
2024-04-27 10:40:14 +02:00
"$schema": "https://turbo.build/schema.json",
2024-06-04 20:57:53 +02:00
"tasks": {
"lint": {},
"format": {},
"test": {},
"build": {
"outputs": [
"dist/**"
],
"dependsOn": [
"^build"
]
},
"dev": {
"dependsOn": [
"^build"
]
}
2024-04-27 10:40:14 +02:00
}
2024-04-27 10:10:50 +02:00
}