Skip to content

Commit

Permalink
Fix JSON formatting (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorgomezv authored Nov 15, 2024
1 parent 0b9e943 commit 2a551b2
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,13 @@
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/tsx",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": [
"<node_internals>/**",
"${workspaceFolder}/node_modules/**"
]
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"]
},
{
"type": "node",
"request": "launch",
"name": "Debug current test file",
"skipFiles": [
"<node_internals>/**"
],
"skipFiles": ["<node_internals>/**"],
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/node_modules/.bin/jest",
Expand All @@ -32,4 +27,4 @@
"console": "integratedTerminal"
}
]
}
}

0 comments on commit 2a551b2

Please sign in to comment.