├── .github ├── assignment.yml ├── locker.yml └── needs_more_info.yml ├── Angular-CLI └── README.md ├── Angular-SpaTemplates ├── CSharp_breakpoint.png ├── README.md └── Typescript_breakpoint.png ├── Electron ├── README.md ├── breakpoint_main.png ├── breakpoint_renderer.png └── configure_launch.png ├── Gatsby-js ├── README.md ├── configure-launch.png └── debug-session.png ├── LICENSE ├── MERN-Starter └── README.md ├── Next-js ├── README.md ├── breakpoint_chrome.png ├── breakpoint_node.png └── configure_launch.png ├── PHP └── README.md ├── README.md ├── SECURITY.md ├── debugging python └── README.md ├── debugging-Ruby-on-Rails └── README.md ├── debugging-cake-scripts ├── README.md ├── breakpoint.png ├── cake_pallette.png ├── debug_profiles.png └── set_breakpoint.png ├── debugging-jest-tests ├── .vscode │ └── launch.json ├── README.md ├── all.gif ├── current.gif ├── jest.config.js ├── lib │ └── calc.js ├── package.json └── test │ ├── add.spec.js │ └── subtract.spec.js ├── debugging-lambda-functions ├── README.md ├── configure-launch.png └── debug-session.png ├── debugging-mocha-tests ├── .vscode │ └── launch.json ├── README.md ├── all.gif ├── current.gif ├── lib │ └── calc.js ├── package.json ├── support │ └── mocha.opts └── test │ ├── add.spec.js │ └── subtract.spec.js ├── debugging-node-tap-tests ├── .gitignore ├── .vscode │ └── launch.json ├── README.md ├── lib │ └── calc.js ├── package.json └── test │ ├── add.spec.js │ └── subtract.spec.js ├── meteor ├── README.md ├── breakpoint_chrome.png ├── breakpoint_node.png └── configure_launch.png ├── nodemon ├── README.md ├── breakpoint.png ├── configure_launch.png ├── processes.png └── terminal.png └── vuejs-cli ├── README.md ├── breakpoint_hit.png ├── breakpoint_set.png ├── config_add.png └── package-lock.json /.github/assignment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/.github/assignment.yml -------------------------------------------------------------------------------- /.github/locker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/.github/locker.yml -------------------------------------------------------------------------------- /.github/needs_more_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/.github/needs_more_info.yml -------------------------------------------------------------------------------- /Angular-CLI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Angular-CLI/README.md -------------------------------------------------------------------------------- /Angular-SpaTemplates/CSharp_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Angular-SpaTemplates/CSharp_breakpoint.png -------------------------------------------------------------------------------- /Angular-SpaTemplates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Angular-SpaTemplates/README.md -------------------------------------------------------------------------------- /Angular-SpaTemplates/Typescript_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Angular-SpaTemplates/Typescript_breakpoint.png -------------------------------------------------------------------------------- /Electron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Electron/README.md -------------------------------------------------------------------------------- /Electron/breakpoint_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Electron/breakpoint_main.png -------------------------------------------------------------------------------- /Electron/breakpoint_renderer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Electron/breakpoint_renderer.png -------------------------------------------------------------------------------- /Electron/configure_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Electron/configure_launch.png -------------------------------------------------------------------------------- /Gatsby-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Gatsby-js/README.md -------------------------------------------------------------------------------- /Gatsby-js/configure-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Gatsby-js/configure-launch.png -------------------------------------------------------------------------------- /Gatsby-js/debug-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Gatsby-js/debug-session.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/LICENSE -------------------------------------------------------------------------------- /MERN-Starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/MERN-Starter/README.md -------------------------------------------------------------------------------- /Next-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Next-js/README.md -------------------------------------------------------------------------------- /Next-js/breakpoint_chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Next-js/breakpoint_chrome.png -------------------------------------------------------------------------------- /Next-js/breakpoint_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Next-js/breakpoint_node.png -------------------------------------------------------------------------------- /Next-js/configure_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/Next-js/configure_launch.png -------------------------------------------------------------------------------- /PHP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/PHP/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/SECURITY.md -------------------------------------------------------------------------------- /debugging python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging python/README.md -------------------------------------------------------------------------------- /debugging-Ruby-on-Rails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-Ruby-on-Rails/README.md -------------------------------------------------------------------------------- /debugging-cake-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-cake-scripts/README.md -------------------------------------------------------------------------------- /debugging-cake-scripts/breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-cake-scripts/breakpoint.png -------------------------------------------------------------------------------- /debugging-cake-scripts/cake_pallette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-cake-scripts/cake_pallette.png -------------------------------------------------------------------------------- /debugging-cake-scripts/debug_profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-cake-scripts/debug_profiles.png -------------------------------------------------------------------------------- /debugging-cake-scripts/set_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-cake-scripts/set_breakpoint.png -------------------------------------------------------------------------------- /debugging-jest-tests/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-jest-tests/.vscode/launch.json -------------------------------------------------------------------------------- /debugging-jest-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-jest-tests/README.md -------------------------------------------------------------------------------- /debugging-jest-tests/all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-jest-tests/all.gif -------------------------------------------------------------------------------- /debugging-jest-tests/current.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-jest-tests/current.gif -------------------------------------------------------------------------------- /debugging-jest-tests/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "testEnvironment": "node" 3 | } -------------------------------------------------------------------------------- /debugging-jest-tests/lib/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-jest-tests/lib/calc.js -------------------------------------------------------------------------------- /debugging-jest-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-jest-tests/package.json -------------------------------------------------------------------------------- /debugging-jest-tests/test/add.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-jest-tests/test/add.spec.js -------------------------------------------------------------------------------- /debugging-jest-tests/test/subtract.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-jest-tests/test/subtract.spec.js -------------------------------------------------------------------------------- /debugging-lambda-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-lambda-functions/README.md -------------------------------------------------------------------------------- /debugging-lambda-functions/configure-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-lambda-functions/configure-launch.png -------------------------------------------------------------------------------- /debugging-lambda-functions/debug-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-lambda-functions/debug-session.png -------------------------------------------------------------------------------- /debugging-mocha-tests/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-mocha-tests/.vscode/launch.json -------------------------------------------------------------------------------- /debugging-mocha-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-mocha-tests/README.md -------------------------------------------------------------------------------- /debugging-mocha-tests/all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-mocha-tests/all.gif -------------------------------------------------------------------------------- /debugging-mocha-tests/current.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-mocha-tests/current.gif -------------------------------------------------------------------------------- /debugging-mocha-tests/lib/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-mocha-tests/lib/calc.js -------------------------------------------------------------------------------- /debugging-mocha-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-mocha-tests/package.json -------------------------------------------------------------------------------- /debugging-mocha-tests/support/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-mocha-tests/support/mocha.opts -------------------------------------------------------------------------------- /debugging-mocha-tests/test/add.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-mocha-tests/test/add.spec.js -------------------------------------------------------------------------------- /debugging-mocha-tests/test/subtract.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-mocha-tests/test/subtract.spec.js -------------------------------------------------------------------------------- /debugging-node-tap-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-node-tap-tests/.gitignore -------------------------------------------------------------------------------- /debugging-node-tap-tests/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-node-tap-tests/.vscode/launch.json -------------------------------------------------------------------------------- /debugging-node-tap-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-node-tap-tests/README.md -------------------------------------------------------------------------------- /debugging-node-tap-tests/lib/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-node-tap-tests/lib/calc.js -------------------------------------------------------------------------------- /debugging-node-tap-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-node-tap-tests/package.json -------------------------------------------------------------------------------- /debugging-node-tap-tests/test/add.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-node-tap-tests/test/add.spec.js -------------------------------------------------------------------------------- /debugging-node-tap-tests/test/subtract.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/debugging-node-tap-tests/test/subtract.spec.js -------------------------------------------------------------------------------- /meteor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/meteor/README.md -------------------------------------------------------------------------------- /meteor/breakpoint_chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/meteor/breakpoint_chrome.png -------------------------------------------------------------------------------- /meteor/breakpoint_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/meteor/breakpoint_node.png -------------------------------------------------------------------------------- /meteor/configure_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/meteor/configure_launch.png -------------------------------------------------------------------------------- /nodemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/nodemon/README.md -------------------------------------------------------------------------------- /nodemon/breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/nodemon/breakpoint.png -------------------------------------------------------------------------------- /nodemon/configure_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/nodemon/configure_launch.png -------------------------------------------------------------------------------- /nodemon/processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/nodemon/processes.png -------------------------------------------------------------------------------- /nodemon/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/nodemon/terminal.png -------------------------------------------------------------------------------- /vuejs-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/vuejs-cli/README.md -------------------------------------------------------------------------------- /vuejs-cli/breakpoint_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/vuejs-cli/breakpoint_hit.png -------------------------------------------------------------------------------- /vuejs-cli/breakpoint_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/vuejs-cli/breakpoint_set.png -------------------------------------------------------------------------------- /vuejs-cli/config_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-recipes/HEAD/vuejs-cli/config_add.png -------------------------------------------------------------------------------- /vuejs-cli/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | --------------------------------------------------------------------------------