summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.vscode/launch.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 66cb9dd..1840d4c 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
- "type": "pwa-node",
+ "type": "node",
"name": "Launch Example Server",
"request": "launch",
"runtimeArgs": [
@@ -14,7 +14,8 @@
],
"runtimeExecutable": "npm",
"skipFiles": [
- "<node_internals>/**"
+ "<node_internals>/**",
+ "${workspaceFolder}/**/node_modules/**",
],
"cwd": "${workspaceFolder}/example",
}