mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
24 lines
333 B
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|