22 lines
420 B
JSON
22 lines
420 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
|
|
},
|
|
"test": {
|
|
"dependsOn": [],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"dependsOn": [],
|
|
"outputs": []
|
|
}
|
|
},
|
|
"globalDependencies": ["**/.env.*local"]
|
|
}
|