Created
August 29, 2021 19:50
-
-
Save Denys-Bushulyak/54b4cfbaeaa5a2d99e7fa28d4f0793a1 to your computer and use it in GitHub Desktop.
Vimspector Jest debug configuration for @nrwl nx
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
{ | |
"configurations": { | |
"run": { | |
"adapter": "vscode-node", | |
"configuration": { | |
"type": "node", | |
"request": "launch", | |
"name": "Jest Current File", | |
"program": "${workspaceFolder}/node_modules/.bin/jest", | |
"args": [ | |
"${fileBasenameNoExtension}", | |
"--config", | |
"${workspaceFolder}/jest.config.js" | |
], | |
"console": "integratedTerminal", | |
"cwd": "${workspaceFolder}" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hero <3 Thank you, you saved me a lot of time.