gpt4 book ai didi

visual-studio-code - VS Code - 无法启动外部程序 tsc.exe

转载 作者:行者123 更新时间:2023-12-04 10:24:36 27 4
gpt4 key购买 nike

我一直在 VS Code 中收到“无法启动外部程序 tsc.exe”。我已经安装了 typescript 并将我的路径设置为 tsc.exe 所在的位置。有什么建议
这是我的任务文件

// The command is tsc.
"command": "tsc",

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

// Under windows use tsc.exe. This ensures we don't need a shell.
"windows": {
"command": "tsc.exe"
},

// 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"

最佳答案

您应该尝试以这种方式安装 tsc:

npm install -g typescript

然后将 tasks.json 更改为:
...
"windows": {
"command": "tsc.cmd"
},
"args" : ["Myfilename.ts"]
...

一切都应该按预期工作,此外,请尝试阅读以下内容:

https://code.visualstudio.com/Docs/tasks

好,

我想出了我自己的解决方案来在每次配置任务运行器(CTR)时生成 task.json 的修改版本,但是 我不知道这是否是一个很好的实践 由于 VSCode 是全新的,我还没有找到更好的解决方案,如果有人知道如何以正确的方式更改点击率,请告诉我!

每次 CTR 运行时都会解析一个名为 taskSampleConfig.json 的文件,该文件在 VSCode 文件夹中,因此您可以将其更改为:
...
"windows": {
"command": "tsc.cmd"
},
...

关于visual-studio-code - VS Code - 无法启动外部程序 tsc.exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29973461/

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