diff --git a/.vscode/launch.json b/.vscode/launch.json index b9ef82e5..e944f17e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,21 +1,21 @@ { - // Use IntelliSense to learn about possible Node.js debug 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", - "request": "attach", - "name": "Attach (Inspector Protocol)", - "port": 9229, - "protocol": "inspector" - }, { - "type": "node", + "name": "Launch Server", + "program": "${workspaceFolder}/server.js", "request": "launch", - "name": "Launch Program", - "program": "${workspaceRoot}\\server.js" + "skipFiles": [ + "/**" + ], + "type": "node" + }, + { + "type": "node", + "request": "attach", + "name": "Attach (Inspector Protocol)", + "port": 9229, + "protocol": "inspector" }, { "type": "node", @@ -25,4 +25,4 @@ "port": 9222 } ] -} +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index dc1a054c..75e3a447 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,7 +8,7 @@ "vue" ], "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" }, "i18n-ally.localesPaths": [ "server/locales"