作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 tasks.json
文件:
{
"version": "0.1.0",
"tasks": [
{
"taskName": "clean",
"windows": {
"command": "del"
},
"linux": {
"command": "rm"
},
"args": [ "build/*" ],
"showOutput": "never",
"isShellCommand": true,
"suppressTaskName": true
}
]
}
每次我使用 Ctrl+P 并编写 task clean
来执行任务时,都会收到以下错误:
Cannot read property 'args' of undefined
有人知道我错过了什么吗?
最佳答案
在特定于操作系统的“linux”
/外部指定
属性,即使您位于这些平台之一。“command”
之前,VSCode 似乎无法满足要求>“windows”
通过添加虚拟"command": ""
,它可以工作:
{
"version": "0.1.0",
"tasks": [
{
"taskName": "clean",
"windows": {
"command": "del"
},
"linux": {
"command": "rm"
},
"command": "",
"args": [ "build/*" ],
"showOutput": "never",
"isShellCommand": true,
"suppressTaskName": true
}
]
}
这对我来说似乎是一个错误。我建议您将其报告给 VSCode issue tracker .
关于task - VS Codetasks.json错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42224218/
这是我的 tasks.json 文件: { "version": "0.1.0", "tasks": [ { "taskName": "clea
我是一名优秀的程序员,十分优秀!