# Pastebin nvf8QPJ0 { // 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": [ { "type": "node", "request": "launch", "name": "Launch Program", "env": {"SSR":true}, "program": "${workspaceFolder}/lib/server/app.js", "sourceMaps": true, "preLaunchTask": "build-server-with-sourcemaps" }, { "type": "node", "request": "launch", "name": "Mocha Tests Website", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "args": [ "--timeout", "999999", "--colors", "${workspaceFolder}/test" // You can point to a specific file or folder to run only those tests ], "env": {"NODE_ENV":"test","SSR":true}, "internalConsoleOptions": "openOnSessionStart", "preLaunchTask": "build-server-with-sourcemaps" }, { "type": "node", "request": "launch", "name": "Mocha Tests API", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "args": [ "--timeout", "999999", "--colors", "${workspaceFolder}/test/api" // You can point to a specific file or folder to run only those tests ], "env": {"NODE_ENV":"test","SSR":true}, "internalConsoleOptions": "openOnSessionStart", "preLaunchTask": "build-server-with-sourcemaps" } ] }