forked from async-labs/saas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vscode launch tasks preLaunchTask helper scripts
- Loading branch information
Pedro Maia Costa
committed
Jun 12, 2019
1 parent
7dc2b9e
commit ed6d23a
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug the API", | ||
"program": "${workspaceFolder}/api/server/app.ts", | ||
"args": [], | ||
"console": "internalConsole", | ||
"cwd": "${workspaceFolder}/api", | ||
"preLaunchTask": "npm: build:api", | ||
"outFiles": ["${workspaceFolder}/api/production-server/**/*.js"] | ||
}, | ||
{ | ||
"name": "Attach to API", | ||
"type": "node", | ||
"request": "attach", | ||
"port": 8000 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters