Files
Pien-Studio/turbo.json
T

23 lines
399 B
JSON
Raw Normal View History

2026-05-10 03:06:54 +07:00
{
2026-05-31 03:03:49 +07:00
"$schema": "https://v2-9-16.turborepo.dev/schema.json",
2026-05-10 03:06:54 +07:00
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "dist/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"test": {
"dependsOn": ["^test"]
}
}
}