21 lines
303 B
JSON
21 lines
303 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"compile": {},
|
|
"dev": {},
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build",
|
|
"compile"
|
|
],
|
|
"outputs": [
|
|
"dist/**"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"build"
|
|
]
|
|
}
|
|
}
|
|
} |