36 lines
520 B
JSON
36 lines
520 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**"
|
|
]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": [
|
|
"^typecheck"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"^lint"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"^test"
|
|
],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|