Skip to content

Commit ca68048

Browse files
committed
chore: vscode lunch configuration
1 parent 4ec2cb4 commit ca68048

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ tmp-build
44
dist
55

66
*-debug.log
7+
.env

.vscode/launch.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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": "Debug Release",
9+
"program": "${workspaceFolder}/scripts/release.js",
10+
"request": "launch",
11+
"skipFiles": [
12+
"<node_internals>/**"
13+
],
14+
"type": "node",
15+
"envFile": "${workspaceFolder}/.env"
16+
}
17+
18+
]
19+
}

0 commit comments

Comments
 (0)