33 lines
615 B
JSON
33 lines
615 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|