VS Code starts debugging in integrated terminal instead of debug console

前端 未结 6 1176
一向
一向 2020-12-02 17:14

I\'ve been using VS Code for quite some time and just today I started having this strange issue. Previously if I started debugging an program (F5) it would start debugging a

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-02 17:53

    Originally the config below worked, but it seems to have been deprecated and it now throws an error:

        "console": "none" 
    

    The new usage is:

        "console": "internalConsole"
    

    There's a bug logged in GitHub to update the docs here.

提交回复
热议问题