在 VSCode Typescript 构建任务中设置 --verbose 选项
Set --verbose option in VSCode Typescript build task
从命令行编译时我可以指定
tsc -b --verbose
但是我不知道如何在 vs 代码中配置默认构建任务来执行相同的操作。我在 tsconfig.json 或 tasks.json
中找不到任何相关条目
从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": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"problemMatcher": [
"$tsc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
如果您想 运行 自己的命令参数或 shell 命令,我建议使用 shell 脚本,因为它提供了更多选项并且可以特定于你想要什么 运行:
{
// 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"
}
}
]
}
从命令行编译时我可以指定
tsc -b --verbose
但是我不知道如何在 vs 代码中配置默认构建任务来执行相同的操作。我在 tsconfig.json 或 tasks.json
中找不到任何相关条目从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": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"problemMatcher": [
"$tsc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
如果您想 运行 自己的命令参数或 shell 命令,我建议使用 shell 脚本,因为它提供了更多选项并且可以特定于你想要什么 运行:
{
// 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"
}
}
]
}