Files
tuono/turbo.json
T
2024-06-16 10:36:55 +02:00

24 lines
333 B
JSON

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