2024-02-28 16:33:15 +03:00

36 lines
646 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env.*"],
"pipeline": {
"build": {
"outputs": ["dist/**", ".next/**", "public/dist/**"],
"dependsOn": ["^build"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"],
"cache": false,
"outputs": []
},
"lint:fix": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"cache": false
},
"clean": {
"cache": false
},
"graphql:codegen": {
"cache": false
},
"graphql:update": {
"cache": false
}
}
}