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