aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-03-14 14:45:43 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-03-14 14:45:43 +0100
commit8189cc268f168c15005c6f317a668e98e1acd6e0 (patch)
treec0136c6bd60973157f33c6d793aa1ef162bec08e /.vscode
parentEnsure that window-state.json always exists (diff)
downloadferdium-app-8189cc268f168c15005c6f317a668e98e1acd6e0.tar.gz
ferdium-app-8189cc268f168c15005c6f317a668e98e1acd6e0.tar.zst
ferdium-app-8189cc268f168c15005c6f317a668e98e1acd6e0.zip
Add simulated windows environments
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json37
1 files changed, 35 insertions, 2 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 5afc2d051..fc5cf094e 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -10,7 +10,6 @@
10 "protocol": "inspector", 10 "protocol": "inspector",
11 "env": { 11 "env": {
12 "NODE_ENV": "development", 12 "NODE_ENV": "development",
13 "OS_PLATFORM": "win32"
14 } 13 }
15 }, 14 },
16 { 15 {
@@ -22,7 +21,6 @@
22 "protocol": "inspector", 21 "protocol": "inspector",
23 "env": { 22 "env": {
24 "LIVE_API": "1", 23 "LIVE_API": "1",
25 "OS_PLATFORM": "win32"
26 } 24 }
27 }, 25 },
28 { 26 {
@@ -34,6 +32,41 @@
34 "protocol": "inspector", 32 "protocol": "inspector",
35 "env": { 33 "env": {
36 "LOCAL_API": "1", 34 "LOCAL_API": "1",
35 }
36 },
37 {
38 "type": "node",
39 "request": "launch",
40 "name": "(Win Sim) Franz - Test API",
41 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
42 "program": "${workspaceFolder}/build/index.js",
43 "protocol": "inspector",
44 "env": {
45 "NODE_ENV": "development",
46 "OS_PLATFORM": "win32"
47 }
48 },
49 {
50 "type": "node",
51 "request": "launch",
52 "name": "(Win Sim) Franz – Live API",
53 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
54 "program": "${workspaceFolder}/build/index.js",
55 "protocol": "inspector",
56 "env": {
57 "LIVE_API": "1",
58 "OS_PLATFORM": "win32"
59 }
60 },
61 {
62 "type": "node",
63 "request": "launch",
64 "name": "(Win Sim) Franz – Local API",
65 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
66 "program": "${workspaceFolder}/build/index.js",
67 "protocol": "inspector",
68 "env": {
69 "LOCAL_API": "1",
37 "OS_PLATFORM": "win32" 70 "OS_PLATFORM": "win32"
38 } 71 }
39 } 72 }