17 lines
332 B
JSON
17 lines
332 B
JSON
|
{
|
||
|
"$schema": "https://turbo.build/schema.json",
|
||
|
"tasks": {
|
||
|
"build": {
|
||
|
"dependsOn": ["^build"],
|
||
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
||
|
"outputs": [".next/**", "!.next/cache/**"]
|
||
|
},
|
||
|
"lint": {
|
||
|
"dependsOn": ["^lint"]
|
||
|
},
|
||
|
"dev": {
|
||
|
"cache": false,
|
||
|
"persistent": true
|
||
|
}
|
||
|
}
|
||
|
}
|