17 lines
359 B
JSON
17 lines
359 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": { "dependsOn": ["^build"], "outputs": ["dist/**"] },
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"lint": {},
|
|
"test": {},
|
|
"format": { "cache": false },
|
|
"typecheck": { "dependsOn": ["^build"] }
|
|
}
|
|
}
|