Files
Nimbus/turbo.json

30 lines
475 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"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"]
}
}
}