1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 11:43:46 +00:00

persist and restore window state

This commit is contained in:
Kyle Spearrin
2018-02-14 15:34:17 -05:00
parent 400f534ab3
commit 490e16798b
3 changed files with 145 additions and 10 deletions

18
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Main Process",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}/build",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
"windows": {
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd"
},
"args": [
"."
]
}
]
}