lamassu-server/turbo.json
2025-05-26 07:45:20 +01:00

22 lines
452 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"remoteCache": {
"enabled": true
},
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["lib/**", "dist/**", "build/**"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["^build"],
"inputs": ["src/**", "tests/**", "lib/**", "package.json"],
"outputs": []
}
}
}