根据Microsoft Documentation,Visual Studio Code调试器应该能够调试typescript和javascript。
问题是,它们仅使用node或python为服务器端应用程序提供示例。 Intellisense仅建议服务器语言。
是否可以使用Visual Studio Code调试器调试客户端打字稿或javascript应用程序?
launch.json
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type":"node" <-- what if I'm building a JS / TS app?
"request": "launch",
"name": "Launch Program",
"program": "${file}",
"outFiles": [
"${workspaceRoot}/out/**/*.js"
]
}
]
}