diff --git a/nextcloud_backup/backend/.vscode/launch.json b/nextcloud_backup/backend/.vscode/launch.json index b389ef9..bb16f5e 100644 --- a/nextcloud_backup/backend/.vscode/launch.json +++ b/nextcloud_backup/backend/.vscode/launch.json @@ -12,11 +12,9 @@ "request": "launch", "restart": true, "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/nodemon", - "skipFiles": [ - "/**" - ], + "skipFiles": ["/**"], "type": "node", "preLaunchTask": "npm: build:watch" } ] -} \ No newline at end of file +} diff --git a/nextcloud_backup/backend/.vscode/tasks.json b/nextcloud_backup/backend/.vscode/tasks.json index b8c2d9f..437aa37 100644 --- a/nextcloud_backup/backend/.vscode/tasks.json +++ b/nextcloud_backup/backend/.vscode/tasks.json @@ -1,14 +1,14 @@ { - "version": "2.0.0", - "tasks": [ - { - "type": "npm", - "script": "build:watch", - "group": "build", - "label": "npm: build:watch", - "detail": "tsc -w", - "isBackground": true, - "problemMatcher": "$tsc-watch" - } - ] -} \ No newline at end of file + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "build:watch", + "group": "build", + "label": "npm: build:watch", + "detail": "tsc -w", + "isBackground": true, + "problemMatcher": "$tsc-watch" + } + ] +}