21 lines
264 B
JSON
21 lines
264 B
JSON
|
|
{
|
||
|
|
"$schema": "https://turbo.build/schema.json",
|
||
|
|
"globalDependencies": [
|
||
|
|
"**/.env.*local"
|
||
|
|
],
|
||
|
|
"tasks": {
|
||
|
|
"lint": {
|
||
|
|
"dependsOn": [
|
||
|
|
"^lint"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"type-check": {
|
||
|
|
"dependsOn": [
|
||
|
|
"^type-check"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"clean": {
|
||
|
|
"cache": false
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|