Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit 68fc59a

Browse files
committed
launcher for vscode
1 parent 19a6179 commit 68fc59a

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.vscode/launch.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "create skills",
9+
"program": "${workspaceFolder}/create-skills.js",
10+
"envFile": "${workspaceFolder}/.env",
11+
"request": "launch",
12+
"skipFiles": [
13+
"<node_internals>/**"
14+
],
15+
"type": "pwa-node"
16+
},
17+
{
18+
"type": "node",
19+
"request": "launch",
20+
"name": "Launch Program",
21+
"skipFiles": [
22+
"<node_internals>/**"
23+
],
24+
"program": "${workspaceFolder}/index.js",
25+
"envFile": "${workspaceFolder}/.env"
26+
}
27+
]
28+
}

0 commit comments

Comments
 (0)