Files
Pien-Studio/turbo.json
2026-05-31 03:04:30 +07:00

23 lines
399 B
JSON

{
"$schema": "https://v2-9-16.turborepo.dev/schema.json",
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "dist/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"test": {
"dependsOn": ["^test"]
}
}
}