35 lines
679 B
JSON
35 lines
679 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": []
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"dependsOn": ["build"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"backtest": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|