lamassu-server/turbo.json
2025-05-23 18:09:20 +01:00

43 lines
884 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"remoteCache": {
"enabled": true
},
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": [
"src/**",
"lib/**",
"public/**",
"index.html",
"vite.config.js",
"tsconfig.json",
"package.json"
],
"outputs": ["lib/**", "dist/**", "build/**"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"watch": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["^build"],
"inputs": ["src/**", "tests/**", "lib/**", "package.json"],
"outputs": []
},
"clean": {
"cache": false
},
"generate-types": {
"inputs": ["src/**", "package.json"],
"outputs": ["src/types/**"]
}
}
}