20 lines
377 B
JSON
20 lines
377 B
JSON
|
{
|
||
|
"$schema": "https://turbo.build/schema.json",
|
||
|
"globalDependencies": ["**/.env.*local"],
|
||
|
"pipeline": {
|
||
|
"build": {
|
||
|
"dependsOn": ["^build"],
|
||
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
|
||
|
},
|
||
|
"lint": {},
|
||
|
"check-types": {},
|
||
|
"dev": {
|
||
|
"cache": false,
|
||
|
"persistent": true
|
||
|
},
|
||
|
"clean": {
|
||
|
"cache": false
|
||
|
}
|
||
|
}
|
||
|
}
|