简体   繁体   中英

VSCode Typescript with NextJS debugging

I can't get any debug config to work with breakpoints and nextJS using typescript… Does anyone have one to share with me ?

Thanks

This is my .vscode/launch.json :

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

Working for me with Next.js v9.4.4 in June 2020.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM