aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorA.J. Shulman <Shulman.aj@gmail.com>2024-07-15 12:31:35 -0400
committerA.J. Shulman <Shulman.aj@gmail.com>2024-07-15 12:31:35 -0400
commitef79b7d617035c52fea159225ba9a39b8222e8f4 (patch)
tree2ad28baadada16e2688f922c906216b39652c28b /.vscode/launch.json
parentf1cdfc1d02488c4a513fbf67f729f702526a345d (diff)
citation parsing working much better
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json15
1 files changed, 6 insertions, 9 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index e4c31361c..e9a07cf93 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -59,7 +59,7 @@
"webRoot": "${workspaceFolder}"
},
{
- "type": "node",
+ "type": "pwa-node",
"request": "attach",
"name": "Typescript Server",
"protocol": "inspector",
@@ -68,7 +68,7 @@
"remoteRoot": "${workspaceFolder}"
},
{
- "type": "node",
+ "type": "pwa-node",
"request": "launch",
"name": "Current TS File",
"runtimeExecutable": "npx",
@@ -76,7 +76,7 @@
"port": 9229
},
{
- "type": "node",
+ "type": "pwa-node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
@@ -86,7 +86,7 @@
"protocol": "inspector"
},
{
- "type": "node",
+ "type": "pwa-node",
"request": "launch",
"name": "Mocha Current File",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
@@ -96,9 +96,6 @@
"protocol": "inspector"
}
],
-
- "resolveSourceMapLocations": [
- "${workspaceFolder}/**",
- "!**/node_modules/**"
- ]
+
+ "resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"]
}