24 lines
376 B
JSON
24 lines
376 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"clean": {
|
|
"cache": false,
|
|
"dependsOn": ["^clean"]
|
|
},
|
|
"build": {
|
|
"cache": true,
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["./dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"cache": false
|
|
},
|
|
"lint:fix": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|