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 6ca8aab + c9634d3 commit 252b95eCopy full SHA for 252b95e
.idx/dev.nix
@@ -16,6 +16,7 @@
16
# search for the extension on https://open-vsx.org/ and use "publisher.id"
17
idx.extensions = [
18
"malloydata.malloy-vscode"
19
+ "ms-vscode.js-debug"
20
];
21
22
idx.previews = {
.vscode/launch.json
@@ -0,0 +1,13 @@
1
+{
2
+ "configurations": [
3
+ {
4
+ "name": "Build and Watch",
5
+ "type": "node",
6
+ "request": "launch",
7
+ "cwd": "${workspaceRoot}",
8
+ "runtimeExecutable": "npm",
9
+ "runtimeArgs": ["run", "build-watch"]
10
+ }
11
+ ]
12
13
+
0 commit comments