Created
October 20, 2017 23:32
-
-
Save HenryNguyen5/6f8f1179f6d8e998e364cf1659abeac7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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": "Jest Tests", | |
"preLaunchTask": "build", | |
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js", | |
"args": ["--config", "${workspaceRoot}/jest_config/jest.config.json"], | |
"internalConsoleOptions": "openOnSessionStart", | |
"sourceMaps": true, | |
"outFiles": ["${workspaceRoot}/build/**/*"] | |
}, | |
{ | |
"type": "chrome", | |
"request": "launch", | |
"name": "Launch Chrome", | |
"runtimeExecutable": "/usr/bin/google-chrome-stable", | |
"userDataDir": "~/.chrome_dev", | |
"url": "http://localhost:3000", | |
"webRoot": "${workspaceRoot}", | |
"smartStep": true, | |
"disableNetworkCache": true, | |
"showAsyncStacks": true, | |
"skipFiles": ["client.js", "dll.vendor.js", "extensions::.*"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment