在 launch.json 中,我具有以下配置,可以从 vscode
中启动当前选择的 typescript文件。npm install jquery popper.js
npm install boostarp
如果我使用此配置,但出现类似错误
{
"name": "Current TS File",
"type": "node",
"request": "launch",
"args": ["${relativeFile}"],
"runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
"sourceMaps": true,
"cwd": "${workspaceRoot}",
"protocol": "inspector"
}
关于哪里出问题的任何主意吗?