28 lines
462 B
JSON
28 lines
462 B
JSON
{
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", "build/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"preview": {
|
|
"dependsOn": ["build"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"]
|
|
}
|
|
},
|
|
"globalDependencies": [
|
|
"**/.eslintrc.base.json",
|
|
"**/.prettierrc"
|
|
]
|
|
} |