We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 661e9ea commit c8cbf0dCopy full SHA for c8cbf0d
.gitignore
@@ -42,12 +42,12 @@
42
**/bower.json.ember-try
43
**/package.json.ember-try
44
45
-.vscode/launch.json
46
api/.vscode/*
47
api/.vscode
48
api/.nvmrc
49
.nvmrc
50
.vscode/*
+!.vscode/launch.json
51
.history
52
53
# ember-try
.vscode/launch.json
@@ -0,0 +1,17 @@
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
+ "type": "node",
9
+ "request": "launch",
10
+ "name": "Launch api",
11
+ "skipFiles": [
12
+ "<node_internals>/**"
13
+ ],
14
+ "program": "${workspaceFolder}/api/bin/www"
15
+ }
16
+ ]
17
+}
0 commit comments