在Visual Studio Code中编译我的Typescript代码时,在TERMINAL
窗口中收到以下错误:
> Executing task: /Users/tom/github/beeblink/server/node_modules/.bin/tsc -p /Users/tom/github/beeblink/server/tsconfig.json <
dfsimage.ts:119:25 - error TS2345: Argument of type 'Buffer' is not assignable to parameter of type 'ArrayBuffer | SharedArrayBuffer'.
Type 'Buffer' is not assignable to type 'SharedArrayBuffer'.
Property '[Symbol.species]' is missing in type 'Buffer'.
119 Buffer.from(diskImageData, diskImageTrack0Offset + usedTrackIdx * diskImageTrackSizeBytes, TRACK_SIZE_BYTES),
~~~~~~~~~~~~~
The terminal process terminated with exit code: 2
如果我是从终端手动构建的,也是如此。
好的,所以我的代码有问题,我需要修复它。没问题,我可以做到。实际上,我已经做到了。对于需要进行哪些编辑,我不需要任何建议。
我需要一些建议:每隔一段时间我的代码出现问题,我就可以使用Go
> Next Problem
或Go
> Previous Problem
依次转到每个构建错误的来源。另一方面,这个特定的菜单似乎并没有将自己添加到此列表中,并且这两个菜单选项完全没有作用。我一直以为这东西只是刮擦终端输出以获得文件/行/列信息,但是...也许不是吗?
我可以在代码中添加更多问题,并且Go
> Next/Previous Problem
功能可以实现预期的功能。但这似乎忽略了这一特定问题。
我希望“下一个/上一个问题”功能考虑到每个构建错误。我如何做到这一点?