从命令行编译时,我可以指定
tsc -b --verbose
但是我不知道如何配置vs代码中的默认构建任务来执行相同的操作。我在 tsconfig.json 或 tasks.json
中找不到任何相关条目答案 0 :(得分:1)
从VSCode tasks documentation运行一个tsc构建任务,有一个TypeScript特定的布局:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run tsc verbosely",
"type": "shell",
"command": "tsc -b --verbose",
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}
如果您想运行自己的命令参数或shell命令,我建议您使用shell脚本,因为它提供了更多选项,并且可以特定于您要运行的内容:
.get()