startkit-cli
Version:
Quick start your project
19 lines • 442 B
JSON
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "npm", //执行npm命令
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"tasks": [
{
"taskName": "build", //task名称
"args": [ //npm run build
"run",
"build"
],
"isBuildCommand": true
}
]
}