Files
Nimbus/turbo.json
2025-10-17 08:46:39 -06:00

30 lines
500 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "apps/**/dist/**", "packages/**/dist/**", "!.cache/**"]
},
"dev": {
"persistent": true,
"cache": false
},
"lint": {
"persistent": true,
"cache": false
},
"format": {
"persistent": true,
"cache": false
},
"start": {
"persistent": true,
"cache": false
},
"check-types": {
"dependsOn": ["^check-types"]
}
}
}