11 lines
350 B
JSON
11 lines
350 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": { "dependsOn": ["^build"], "outputs": ["dist/**", ".next/**"] },
|
|
"dev": { "cache": false, "persistent": true },
|
|
"lint": { "dependsOn": ["^lint"], "outputs": [] },
|
|
"typecheck": { "dependsOn": ["^typecheck"], "outputs": [] },
|
|
"clean": { "cache": false }
|
|
}
|
|
}
|