mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
21 lines
389 B
JSON
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
|
|
}
|
|
}
|
|
}
|