turborepo/examples/with-angular/turbo.json
Anthony Shew 4acd1df6bf
docs: migrate to turborepo.com (#10368)
### Description

We're changing `turbo.build` to `turborepo.com`. This PR changes the
strings with a find and replace across the whole of the codebase.

### Testing Instructions

👀
2025-04-23 10:39:37 -06:00

20 lines
357 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["./dist"]
},
"lint": {
"dependsOn": ["^lint"]
},
"start": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}