This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MarkNow/turbo.json
2023-06-15 14:36:31 -03:00

19 lines
281 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"outputs": ["dist/**"]
},
"lint": {},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"preview": {
"dependsOn": ["^build"],
"persistent": true
}
}
}