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.
1 parent 4ec2cb4 commit ca68048Copy full SHA for ca68048
.gitignore
@@ -4,3 +4,4 @@ tmp-build
4
dist
5
6
*-debug.log
7
+.env
.vscode/launch.json
@@ -0,0 +1,19 @@
1
+{
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
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