From 2a551b278a70599ada0cbc91fbe0feeb6d8cf786 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20G=C3=B3mez?= Date: Fri, 15 Nov 2024 10:00:46 +0100 Subject: [PATCH] Fix JSON formatting (#37) --- .vscode/launch.json | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 72df196..77fa1a1 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,18 +9,13 @@ "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/tsx", "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", - "skipFiles": [ - "/**", - "${workspaceFolder}/node_modules/**" - ] + "skipFiles": ["/**", "${workspaceFolder}/node_modules/**"] }, { "type": "node", "request": "launch", "name": "Debug current test file", - "skipFiles": [ - "/**" - ], + "skipFiles": ["/**"], "runtimeArgs": [ "--inspect-brk", "${workspaceRoot}/node_modules/.bin/jest", @@ -32,4 +27,4 @@ "console": "integratedTerminal" } ] -} \ No newline at end of file +}