Skip to content

Commit 252b95e

Browse files
author
Will Scullin
authored
Merge pull request #90 from malloydata/whscullin/idx-preview
Build and watch launcher.
2 parents 6ca8aab + c9634d3 commit 252b95e

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.idx/dev.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# search for the extension on https://open-vsx.org/ and use "publisher.id"
1717
idx.extensions = [
1818
"malloydata.malloy-vscode"
19+
"ms-vscode.js-debug"
1920
];
2021

2122
idx.previews = {

.vscode/launch.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)