41 lines
645 B
JSON
41 lines
645 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"inputs": [
|
|
"$TURBO_DEFAULT$",
|
|
".env*"
|
|
],
|
|
"outputs": [
|
|
".next/**",
|
|
"!.next/cache/**"
|
|
]
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"^lint"
|
|
]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": [
|
|
"^check-types"
|
|
]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"studio": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"push": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
} |