21 lines
342 B
JSON
21 lines
342 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"clean": {
|
|
"dependsOn": ["^clean"]
|
|
},
|
|
"build": {
|
|
"cache": false,
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["./dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"cache": false,
|
|
"dependsOn": ["^lint"]
|
|
}
|
|
}
|
|
}
|