gpt4 book ai didi

node.js - 如何在 VS2015 中调试 Node.js 应用程序?

转载 作者:太空宇宙 更新时间:2023-11-03 22:13:10 24 4
gpt4 key购买 nike

给定:

  1. 全新安装 VS 2015(企业版)
  2. 已安装适用于 VS 的 Node.js 工具 ( https://www.visualstudio.com/features/node-js-vs )
  3. 已安装 Node.js
  4. 使用基本 Node.js Express 4 应用程序项目模板创建了一个新项目。

应用程序运行良好并按预期工作,但 VS 不尊重我设置的任何断点 - “当前不会命中断点。此代码位置没有加载任何代码”是我得到的,断点是禁用: enter image description here

谷歌搜索没有用。

有什么想法吗?

最佳答案

确保生成源映射。

如果您的项目中没有 tsconfig.json,请检查 Visual Studio 属性页。在TypeScript Build选项卡下,确保选择生成源映射Example Visual Studio property page .

如果您使用 tsconfig.json,请确保在compilerOptions 部分中生成源映射。

{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"outFile": "../../built/local/tsc.js",
"sourceMap": true
}
}

关于node.js - 如何在 VS2015 中调试 Node.js 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36532649/

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