UNPKG

mframejs

Version:
47 lines 1.58 kB
{ // Use IntelliSense to learn about possible Node.js debug attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Jest (tested on windows 10)", "type": "node", "request": "launch", "program": "${workspaceRoot}/node_modules/jest/bin/jest.js", "stopOnEntry": false, "args": [ "--runInBand", "--config=jest.config.json" ], "cwd": "${workspaceRoot}", "preLaunchTask": null, "runtimeExecutable": null, "runtimeArgs": [ "--nolazy" ], "env": { "NODE_ENV": "test" }, "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", "sourceMaps": true }, { "name": "Launch Chrome localhost", "type": "chrome", "request": "launch", "url": "http://localhost:4444", "webRoot": "${workspaceFolder}/dist", "sourceMaps": true }, { "name": "Launch Edge localhost with sourcemaps", "type": "edge", "request": "launch", "url": "http://localhost:4444", "webRoot": "${workspaceFolder}/dist", "sourceMaps": true }, ] }