{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "command": "npm test", "name": "Node Start (npm)", "request": "launch", "type": "node-terminal", "cwd": "${fileDirname}" }, { "type": "java", "name": "Java with Argument Prompt", "request": "launch", "mainClass": "", "args": "${command:SpecifyProgramArgs}", "cwd": "${fileDirname}" }, { "name": "Python", "type": "python", "request": "launch", "args": [], "program": "${file}", "console": "integratedTerminal", "cwd": "${fileDirname}", }, { "name": "C/C++", "type": "cppdbg", "request": "launch", "preLaunchTask": "Build C", "program": "${fileDirname}/DEBUG_C", "args": [], "stopAtEntry": false, "cwd": "${fileDirname}", "environment": [], "externalConsole": false, "MIMode": "gdb", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ] } ] }