We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b30ed4a + 475c70c commit 233bc4eCopy full SHA for 233bc4e
.vscode/launch.json
@@ -0,0 +1,26 @@
1
+{
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "name": "unit test",
9
+ "request": "launch",
10
+ "runtimeArgs": [
11
+ "run-script",
12
+ "test",
13
+ "---",
14
+ "--runInBand"
15
+ ],
16
+ "runtimeExecutable": "npm",
17
+ "skipFiles": [
18
+ "<node_internals>/**"
19
20
+ "type": "pwa-node",
21
+ "envFile": "${workspaceFolder}/.env.debug",
22
+ "console": "integratedTerminal",
23
+ "internalConsoleOptions": "neverOpen"
24
+ }
25
+ ]
26
+}
0 commit comments