stock-bot/turbo.json
2025-06-09 20:00:08 -04:00

46 lines
983 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalDependencies": ["**/.env.*local"], "tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
"inputs": ["src/**", "package.json", "tsconfig.json"]
},
"build:libs": {
"dependsOn": [],
"outputs": ["dist/**"],
"inputs": ["src/**", "package.json", "tsconfig.json"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["build"],
"outputs": []
},
"lint": {
"dependsOn": ["^lint"]
},
"clean": {
"cache": false
},
"start": {
"dependsOn": ["build"],
"cache": false,
"persistent": true
},
"backtest": {
"dependsOn": ["build"],
"cache": false
}
},
"globalEnv": [
"NODE_ENV",
"DATA_SERVICE_PORT",
"DRAGONFLY_HOST",
"DRAGONFLY_PORT"
]
}