Skip to content
This repository has been archived by the owner on Dec 31, 2024. It is now read-only.

Commit

Permalink
Fixed launch configurations for vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverschwendener committed Feb 23, 2018
1 parent 9d52e50 commit d81321e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"program": "${workspaceRoot}/src/ts/main.ts",
"protocol": "inspector",
"sourceMaps": true,
"cwd": "${workspaceRoot}/src/js",
"cwd": "${workspaceRoot}/build/js",
"outFiles": [
"${workspaceRoot}/src/js/**/*.js"
"${workspaceRoot}/build/js/**/*.js"
]
},
{
Expand All @@ -26,11 +26,11 @@
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd"
},
"runtimeArgs": [
"${workspaceRoot}/src/js/main.js",
"${workspaceRoot}/build/js/main.js",
"--remote-debugging-port=9222"
],
"port": 9222,
"webRoot": "${workspaceRoot}/src"
"webRoot": "${workspaceRoot}"
},
{
"type": "node",
Expand All @@ -45,7 +45,7 @@
"--colors",
"-r",
"ts-node/register",
"${workspaceRoot}/tests/unit/**/*.test.ts"
"${workspaceRoot}/src/tests/unit/**/*.test.ts"
],
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
Expand All @@ -63,7 +63,7 @@
"--colors",
"-r",
"ts-node/register",
"${workspaceRoot}/tests/integration/**/*.test.ts"
"${workspaceRoot}/src/tests/integration/**/*.test.ts"
],
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
Expand Down

0 comments on commit d81321e

Please sign in to comment.