forked from oliverschwendener/ueli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c593aa
commit 475cb52
Showing
3 changed files
with
57 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
.DS_Store | ||
|
||
#Visual Studio Code files | ||
.vscode/* | ||
!.vscode/launch.example.json | ||
|
||
#Bundled files | ||
bundle/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
// 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": "launch", | ||
"name": "Electron Main", | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", | ||
"program": "${workspaceRoot}/src/ts/main.ts", | ||
"protocol": "inspector", | ||
"sourceMaps": true, | ||
"cwd": "${workspaceRoot}", | ||
"outFiles": [ | ||
"${workspaceRoot}/bundle/main.js" | ||
] | ||
}, | ||
{ | ||
"name": "Electron Renderer", | ||
"type": "chrome", | ||
"request": "launch", | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", | ||
"windows": { | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd" | ||
}, | ||
"runtimeArgs": [ | ||
"${workspaceRoot}/bundle/main.js", | ||
"--remote-debugging-port=9222" | ||
], | ||
"port": 9222, | ||
"webRoot": "${workspaceRoot}" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Jest Tests", | ||
"program": "${workspaceRoot}/node_modules/jest/bin/jest", | ||
"args": [ | ||
"--runInBand", | ||
"--config", | ||
"jest.json", | ||
"src/tests" | ||
], | ||
"console": "internalConsole", | ||
"internalConsoleOptions": "neverOpen", | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters