Skip to content

Commit bc161c1

Browse files
Added launch for debug in vscode
1 parent c67c436 commit bc161c1

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.vscode/launch.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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 Program",
11+
"program": "${workspaceFolder}/src/main.ts",
12+
"preLaunchTask": "tsc: build - tsconfig.json",
13+
"args": [
14+
"-f",
15+
"openapi_temp.json",
16+
"-o",
17+
"output",
18+
"-t",
19+
"angular2"
20+
],
21+
"outFiles": ["${workspaceFolder}/build/**/*.js"]
22+
}
23+
]
24+
}

0 commit comments

Comments
 (0)