mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 08:46:24 +02:00
27 lines
489 B
JSON
27 lines
489 B
JSON
|
|
{
|
||
|
|
"$schema": "https://turbo.build/schema.json",
|
||
|
|
"globalDependencies": ["**/.env.*local"],
|
||
|
|
"tasks": {
|
||
|
|
"build": {
|
||
|
|
"dependsOn": ["^build"],
|
||
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
||
|
|
},
|
||
|
|
"dev": {
|
||
|
|
"cache": false,
|
||
|
|
"persistent": true
|
||
|
|
},
|
||
|
|
"lint": {
|
||
|
|
"dependsOn": ["^lint"]
|
||
|
|
},
|
||
|
|
"typecheck": {
|
||
|
|
"dependsOn": ["^typecheck"]
|
||
|
|
},
|
||
|
|
"format": {
|
||
|
|
"cache": false
|
||
|
|
},
|
||
|
|
"clean": {
|
||
|
|
"cache": false
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|