24 lines
439 B
JSON
24 lines
439 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**",".next/**","!.next/cache/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"3rapp/api#cli":{
|
|
"cache": false
|
|
},
|
|
"3rapp/admin#dev":{
|
|
"dependsOn": ["@3rapp/utils#build"]
|
|
},
|
|
"start:dev":{}
|
|
}
|
|
}
|