MeshiTrack/turbo.json

41 lines
795 B
JSON
Raw Normal View History

2026-03-27 14:50:34 +09:00
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"]
},
"lint-fix": {
"dependsOn": ["^build"],
"cache": false
},
"test": {
"dependsOn": ["^build"]
},
2026-05-19 11:06:03 +09:00
"test:watch": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
2026-03-27 14:50:34 +09:00
"test:cov": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"typecheck": {
"dependsOn": ["^build"]
},
"clean": {
"cache": false
}
}
}