gpt4 book ai didi

typescript - 如何配置 VS Code 的 "tasks.json"以构建所有 .ts 文件

转载 作者:搜寻专家 更新时间:2023-10-30 21:18:22 28 4
gpt4 key购买 nike

可能之前有人问过这个问题,我很抱歉重复的帖子只是将我重定向到另一个线程。

是否可以配置 VS Code 的 “tasks.json”编译文件夹中的所有 .ts 文件。我知道我可以像这样手动将路径添加到 .ts 文件:

"args": [ HelloWorld.ts ],

它确实正确编译了 HelloWorld.ts,但我不知道如何设置编译文件夹中所有 ts 文件的 tasks.json。

我看过一些教程,它们都建议简单地删除“HelloWorld.ts”,但这不起作用,因为根本没有编译任何 .ts 文件。

这是我在 VS Code 中的整个 tasks.json 文件:

{
"version": "0.1.0",

// The command is tsc. Assumes that tsc has been installed using npm install -g typescript
"command": "tsc",

// The command is a shell script
"isShellCommand": true,

// Show the output window only if unrecognized errors occur.
"showOutput": "always",

// args is the HelloWorld program to compile.
"args": [ "HelloWorld.ts" ],

// use the standard tsc problem matcher to find compile problems
// in the output.
"problemMatcher": "$tsc"
}

最佳答案

在您的 tasks.json 中删除“args”键的方括号内容:

"args": []

确保你也有 tsconfig.json 文件。这为我成功编译了所有 .ts 文件。

关于typescript - 如何配置 VS Code 的 "tasks.json"以构建所有 .ts 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34723358/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com