18
VS代码:“断点被忽略,因为找不到生成的代码”错误
我到处都看过了,但在VS Code中调试TypeScript时仍然遇到问题。我已经阅读了该线程,但是仍然无法击中TypeScript文件中的断点,击中.js文件中的断点都可以正常工作。 这是我建立的最简单的“ hello world”项目。 应用程式: var message: string = "Hello World"; console.log(message); tsconfig.json { "compilerOptions": { "target": "es5", "sourceMap": true } } launch.json { "version": "0.2.0", "configurations": [ { "name": "Launch", "type": "node", "request": "launch", "program": "${workspaceRoot}/app.js", "stopOnEntry": false, "args": [], "cwd": "${workspaceRoot}", "preLaunchTask": null, "runtimeExecutable": null, "runtimeArgs": [ …