diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 728d59c..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Renderer", - "type": "chrome", - "request": "attach", - "port": 9876, - "url": "http://localhost:4200", - "sourceMaps": true, - "timeout": 10000, - "trace": "verbose", - "sourceMapPathOverrides": { - "webpack:///./*": "${workspaceFolder}/*" - }, - "preLaunchTask": "Build.Renderer" - }, - { - "name": "Main", - "type": "node", - "request": "launch", - "protocol": "inspector", - "cwd": "${workspaceFolder}", - "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", - "trace": "verbose", - "runtimeArgs": [ - "--serve", - ".", - "--remote-debugging-port=9876" - ], - "windows": { - "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd" - }, - "preLaunchTask": "Build.Main" - } - ], - "compounds": [ - { - "name": "Application Debug", - "configurations": [ "Renderer", "Main" ] - } - ] -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 374d5ac..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "Build.Main", - "type": "shell", - "command": "npm run electron:serve-tsc", - "isBackground": false, - "group": { - "kind": "build", - "isDefault": true - }, - "problemMatcher": { - "owner": "typescript", - "source": "ts", - "applyTo": "closedDocuments", - "fileLocation": ["relative", "${cwd}"], - "pattern": "$tsc", - "background": { - "activeOnStart": true, - "beginsPattern": "^.*", - "endsPattern": "^.*Terminal will be reused by tasks, press any key to close it.*" - } - } - }, - { - "label": "Build.Renderer", - "type": "shell", - "command": "npm run ng:serve", - "isBackground": true, - "group": { - "kind": "build", - "isDefault": true - }, - "problemMatcher": { - "owner": "typescript", - "source": "ts", - "applyTo": "closedDocuments", - "fileLocation": ["relative", "${cwd}"], - "pattern": "$tsc", - "background": { - "activeOnStart": true, - "beginsPattern": "^.*", - "endsPattern": "^.*Compiled successfully.*" - } - } - } - ] - } \ No newline at end of file