stock-bot/turbo.json

36 lines
693 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui", "tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"build:libs": {
"dependsOn": [],
"outputs": ["dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["build"],
"outputs": ["coverage/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"clean": {
"cache": false
},
"start": {
"dependsOn": ["build"],
"cache": false,
"persistent": true
},
"backtest": {
"dependsOn": ["build"],
"cache": false
}
}
}