Skip to content

Commit 178f102

Browse files
committed
Add a VS Code configuration
This was copied over verbatim from https://github.com/dscho/leave-me-alone-github-app/tree/main/.vscode Signed-off-by: Johannes Schindelin <[email protected]>
1 parent f787a54 commit 178f102

File tree

4 files changed

+35
-0
lines changed

4 files changed

+35
-0
lines changed

.vscode/extensions.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"ms-azuretools.vscode-azurefunctions"
4+
]
5+
}

.vscode/launch.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Attach to Node Functions",
6+
"type": "node",
7+
"request": "attach",
8+
"port": 9229,
9+
"preLaunchTask": "func: host start"
10+
}
11+
]
12+
}

.vscode/settings.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"azureFunctions.deploySubpath": ".",
3+
"azureFunctions.projectLanguage": "JavaScript",
4+
"azureFunctions.projectRuntime": "~4",
5+
"debug.internalConsoleOptions": "neverOpen"
6+
}

.vscode/tasks.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "func",
6+
"label": "func: host start",
7+
"command": "host start",
8+
"problemMatcher": "$func-node-watch",
9+
"isBackground": true
10+
}
11+
]
12+
}

0 commit comments

Comments
 (0)