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