Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"$schema": "./node_modules/turbo/schema.json",
"ui": "tui",
"tasks": {
"transit": {
"dependsOn": ["^transit"],
"outputs": []
Comment on lines +6 to +7

Copilot AI Mar 2, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

transit is intended as a no-op dependency edge, but setting outputs: [] makes it a cacheable task and can create (empty) local/remote cache entries with little benefit. Consider omitting outputs (like //#syncpack) or explicitly setting cache: false so transit only affects dependency hashing without adding cache churn.

Suggested change
"dependsOn": ["^transit"],
"outputs": []
"dependsOn": ["^transit"]

Copilot uses AI. Check for mistakes.
},
"dev": {
"cache": false,
"persistent": true
Expand All @@ -18,6 +22,7 @@
"outputs": ["node_modules/.cache/eslint"]
},
"eslint": {
"dependsOn": ["transit"],
"inputs": ["$TURBO_DEFAULT$", "!README.md"],
"outputs": ["node_modules/.cache/eslint"]
},
Expand All @@ -26,13 +31,15 @@
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"typecheck": {
"dependsOn": ["transit"],
"inputs": ["src/**/*.ts", "src/**/*.tsx", "test/**/*.ts", "test/**/*.tsx", "tsconfig.json", "tsconfig.build.json"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"//#syncpack": {
"inputs": [".syncpackrc.js", "package.json", "packages/**/package.json", "samples/**/package.json"]
},
"test": {
"dependsOn": ["transit"],
"outputs": ["node_modules/.cache/vitest/**"]
}
}
Expand Down
Loading