TangSengDaoDaoWeb/turbo.json
2023-12-28 14:36:52 +08:00

23 lines
368 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"dev": {
"cache": false
},
"dev-ele": {
"dependsOn": ["^dev"],
"cache": false
},
"build": {
"outputs": [".next/**"]
},
"build-ele": {
"outputs": [".next/**"],
"dependsOn": ["^build"]
},
"lint": {
"outputs": []
}
}
}