Skip to content

Commit c8cbf0d

Browse files
aceolHEYGUL
authored andcommitted
Add launcher for api in vs code
1 parent 661e9ea commit c8cbf0d

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@
4242
**/bower.json.ember-try
4343
**/package.json.ember-try
4444

45-
.vscode/launch.json
4645
api/.vscode/*
4746
api/.vscode
4847
api/.nvmrc
4948
.nvmrc
5049
.vscode/*
50+
!.vscode/launch.json
5151
.history
5252

5353
# ember-try

.vscode/launch.json

+17
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)