mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
40 lines
649 B
JSON
40 lines
649 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/**", "build/**"],
|
|
"inputs": [
|
|
"src/**",
|
|
"docs/**",
|
|
"package.json",
|
|
"tsconfig.json",
|
|
"tsup.config.ts",
|
|
"vite.config.ts",
|
|
"docusaurus.config.ts"
|
|
]
|
|
},
|
|
"watch:tsc": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"start": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["@roo-code/types#build"]
|
|
}
|
|
}
|
|
}
|