-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(debug): debug in vscode with breakpoints
- Loading branch information
1 parent
248c884
commit df61df6
Showing
3 changed files
with
153 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
// 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", | ||
"cwd": "${workspaceRoot}", | ||
"request": "launch", | ||
"name": "Debug fix-mismatches", | ||
"skipFiles": ["<node_internals>/**"], | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/ts-node", | ||
"args": ["--transpileOnly", "${workspaceRoot}/src/bin-fix-mismatches"] | ||
}, | ||
{ | ||
"type": "node", | ||
"cwd": "${workspaceRoot}", | ||
"request": "launch", | ||
"name": "Debug format", | ||
"skipFiles": ["<node_internals>/**"], | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/ts-node", | ||
"args": ["--transpileOnly", "${workspaceRoot}/src/bin-format"] | ||
}, | ||
{ | ||
"type": "node", | ||
"cwd": "${workspaceRoot}", | ||
"request": "launch", | ||
"name": "Debug lint-semver-ranges", | ||
"skipFiles": ["<node_internals>/**"], | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/ts-node", | ||
"args": ["--transpileOnly", "${workspaceRoot}/src/bin-lint-semver-ranges"] | ||
}, | ||
{ | ||
"type": "node", | ||
"cwd": "${workspaceRoot}", | ||
"request": "launch", | ||
"name": "Debug list-mismatches", | ||
"skipFiles": ["<node_internals>/**"], | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/ts-node", | ||
"args": ["--transpileOnly", "${workspaceRoot}/src/bin-list-mismatches"] | ||
}, | ||
{ | ||
"type": "node", | ||
"cwd": "${workspaceRoot}", | ||
"request": "launch", | ||
"name": "Debug list", | ||
"skipFiles": ["<node_internals>/**"], | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/ts-node", | ||
"args": ["--transpileOnly", "${workspaceRoot}/src/bin-list"] | ||
}, | ||
{ | ||
"type": "node", | ||
"cwd": "${workspaceRoot}", | ||
"request": "launch", | ||
"name": "Debug set-semver-ranges", | ||
"skipFiles": ["<node_internals>/**"], | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/ts-node", | ||
"args": ["--transpileOnly", "${workspaceRoot}/src/bin-set-semver-ranges"] | ||
} | ||
] | ||
} |
This file contains 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
This file contains 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