带有NextJS调试的VSCode Typescript

时间:2019-06-13 13:07:12

标签: typescript visual-studio-code next.js

我无法获得任何调试配置来使用打字稿与断点和nextJS配合使用……有人可以和我分享吗?

谢谢

1 个答案:

答案 0 :(得分:1)

这是我的.vscode/launch.json

{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "node",
      "request": "launch",
      "name": "Launch Program",
      "program": "${workspaceFolder}/node_modules/next/dist/bin/next"
    }
  ]
}

在2020年6月为我使用Next.js v9.4.4。