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 c67c436 commit bc161c1Copy full SHA for bc161c1
.vscode/launch.json
@@ -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