Roo-Code/turbo.json
2025-06-04 09:32:27 -07:00

21 lines
389 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint": {},
"check-types": {},
"test": {
"dependsOn": ["@roo-code/types#build"]
},
"format": {},
"clean": {
"cache": false
},
"build": {
"outputs": ["dist/**"],
"inputs": ["src/**", "package.json", "tsconfig.json", "tsup.config.ts", "vite.config.ts"]
},
"watch:tsc": {
"cache": false
}
}
}