mirror of
https://github.com/actions/stale.git
synced 2025-12-13 21:53:25 +00:00
Add vscode debug settings
This commit is contained in:
20
.vscode/launch.json
vendored
Normal file
20
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Debug Jest Tests",
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceRoot}/node_modules/jest/bin/jest",
|
||||||
|
"args": [
|
||||||
|
"-i"
|
||||||
|
],
|
||||||
|
"preLaunchTask": "tsc: build - tsconfig.json",
|
||||||
|
"internalConsoleOptions": "openOnSessionStart",
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
"outFiles": [
|
||||||
|
"${workspaceRoot}/build/dist/**/*"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user