22 lines
392 B
JSON
22 lines
392 B
JSON
|
|
{
|
||
|
|
"$schema": "https://turbo.build/schema.json",
|
||
|
|
"ui": "tui",
|
||
|
|
"tasks": {
|
||
|
|
"build": {
|
||
|
|
"dependsOn": ["^build"],
|
||
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
||
|
|
"outputs": ["dist/**"]
|
||
|
|
},
|
||
|
|
"format": {
|
||
|
|
"dependsOn": ["^format"]
|
||
|
|
},
|
||
|
|
"typecheck": {
|
||
|
|
"dependsOn": ["^typecheck"]
|
||
|
|
},
|
||
|
|
"dev": {
|
||
|
|
"cache": false,
|
||
|
|
"persistent": true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|