Files
2026-04-10 18:02:41 +03:00

47 lines
854 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [
".next/**",
"!.next/cache/**",
"dist/**",
"out/**",
"build/**"
]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"start": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"],
"outputs": []
},
"lint:fix": {
"cache": false
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"analyze": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "out/**", "build/**"]
},
"clean": {
"cache": false
},
"watch-build": {
"cache": false,
"persistent": true
}
}
}