mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 13:48:14 +00:00
- Add turbo.json with task pipeline configuration and dependency graph - Update root package.json scripts to use Turbo commands for all tasks - Add packageManager field required by Turbo - Configure proper task dependencies (typecheck/dev depend on build) - Enable intelligent caching for dramatic build performance improvements - Add dev script filters for targeted example development 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
462 B
JSON
27 lines
462 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
} |